﻿﻿.password-strength-feedback {
    display: none;
    color: red;
    font-size: 14px;
}

.status-message {
    padding: 10px;
    color: white;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px; /* Rounded corners */
    margin: 10px 0; /* Add some margin for spacing */
}

.green {
    background-color: #CBE57C;
    border: 2px solid #388E3C; /* Darker green border */
}

.red {
    background-color: #F96161;
    border: 2px solid #FF0000; /* Darker red border */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.container {
    max-width: 100%; /* Allow the container to be as wide as the screen */
    margin: 1%;
    border: 1px groove #252930;
    border: 1px solid rgba(0, 80, 250, .5);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 800px) {
    .container {
        max-width: 70%; /* Adjust this value as needed */
        margin: 1% 30%;
    }
}

.uploadcontainer {
    max-width: 100%; /* Allow the container to be as wide as the screen */
    margin: 1%;
    border: 1px groove #252930;
    border: 1px solid rgba(0, 80, 250, .5);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    height: 120px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
	font-weight: bold; 
    width: 300px; 
}

    .btn:hover {
        background-color: #2cb532;
    }

.btn-delete {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E6676B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold; 
    width: 300px; 
}

    .btn-delete:hover {
        background-color: #cd3237;
    }

.btn-contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: #90c3ed;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
	font-weight: bold; 
    width: 300px; 
}

    .btn-contact:hover {
        background-color: #6dddf7;
    }

/*#cameraContainer {
                    padding: 10px 20px;
                    max-width: 100vw;
                    height: auto;
                }*/

#cameraContainer {
    max-width: 100%;
    overflow: hidden;
    position: absolute;
}

video {
    width: 100%;
    height: auto;
    /*max-height: 100vh; /* Set maximum height to the viewport height */
    object-fit: contain; /* Preserve aspect ratio and fit within the container */
}

#cameraOverlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

#confirmPictureArea {
    display: none; /* Hide the freeze frame button initially */
}

    #confirmPictureArea h3 {
        text-align: center;
    }

#confirmPictureButton {
    display: block; /* Show the upload picture button */
    margin: 0 auto;
}

#error-message {
    /*text-align: center;*/
    padding: 10px;
    color: white;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px; /* Rounded corners */
    margin: 10px 0; /* Add some margin for spacing */
}

.image-cropped-transform {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55%;
    transform: scale(0.5) translate(0, 5%);
}

#userTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px; /* Add margin for better spacing */
}

    #userTable th, #userTable td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

.slet-column {
    max-width: 50px; /* Limit the maximum width */
    text-align: center; /* Center align the content */
    white-space: nowrap; /* Prevent content from wrapping */
}

.column-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

    .column-btn:hover {
        background-color: #2cb532;
    }

.column-btn-delete {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E6676B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

    .column-btn-delete:hover {
        background-color: #cd3237;
    }