:root {
    --light: #ddd;
    --medium: #bbb;
    --mediumdark: #555;
    --dark: #222;
    --text: #f8f8f8;
    --red: #962c11;
    --redlight: #f44336;
    --background: #444444;
    --backgroundlight: #777777;
    --backgroundlightest: #999999;
}

body {
    background-color: #ccc !important;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
}

.form {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}

.formdata {
    /*display: table-cell;*/
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-style: italic;
    border: none;
    border-bottom: 1px solid rgb(44, 40, 40) !important;
    border-radius: 5px;
    background-color: #ccc !important;
    padding: 5px;
}

.icons {
    filter: invert(94%) sepia(100%) saturate(0%) hue-rotate(63deg) brightness(108%) contrast(101%);
    cursor: 'pointer';
}

.icons-small {
    width: 14px;
    height: 14px;
}
.icons-large {
    width: 24px;
    height: 24px;
}
.icons:hover {
    filter: invert(16%) sepia(79%) saturate(3247%) hue-rotate(5deg) brightness(84%) contrast(87%);
}
.icons-highlight {
    filter: invert(16%) sepia(79%) saturate(3247%) hue-rotate(5deg) brightness(84%) contrast(87%);
}

input {
    border: none;
    border-bottom: 1px solid rgb(44, 40, 40);
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;   
}
.verify {
    font-size: smaller;
    color: red;
    font-style: italic;

}
.language {
    text-align: center;
}

.box {
    position: absolute;
    left: 30%;
    width: 40%;
    text-align: center;
    opacity: 0.8;
    padding: 20px;
    background-color: #ddd;
    border-radius: 15px;
}

.submit {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px;
    background-color: #4CAF50;
    color: white;
}
.pointer {
    cursor: pointer;
}
.cancel {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px;
    background-color: #f44336;
    color: white;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #bbb ;
    
}

.data-table th,
.data-table td {
    border: 1px solid #ccc ;
    padding: 5px;
}

.data-table th {
    background: #f0f0f0 !important;
}

.action-icons i {
    margin-right: 10px;
    cursor: pointer;
}

.popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--dark);
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    background-color: #AAAAAA;
    color: #000000;
    padding: 5px 5px;
    border-radius: 10px;
    overflow: auto;
    resize: both;
}


.container {
    max-width: 800px;
    margin: 40px auto;
    /*background: #fff;*/
    padding: 30px;
    border-radius: 10px;
    width: 75%;
}

@media (max-width: 600px) {
    .box {
        left: 2% !important;
        width: 96% !important;
        font-size: larger;
        padding: 10px;
    }

    .container {
        width: 96% !important;
    }

    .text,
    .form,
    .submit {
        font-size: large !important;
    }
}