/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

html, body {
    height: 100%;
}

.full-height {
    height: 100vh;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
}

.form-group {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 0;
    min-height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 30px 10px 0;
    color: #111111;
    background-color: #ffffff;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*@media only screen and (max-width: 767px) {
    .fxt-none-767 {
        display: none !important;
    }
}*/

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.webinar-section {
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.webinar-language .flag.selected {
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.webinar-language .flag {
    padding: 8px;
    display:inline-block;
}

.webinar-language .flag > img {
    height: 50px;
    cursor:pointer;
}

.question-section {
    background-color: #e9ecef;
    padding: 10px;
}

.chat-section {
    height: 400px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    position: relative;
    padding: 10px;
}

.participants-section {
    height: 572px;
    background-color: #e9ecef;
    padding: 10px;
}

    .participants-section .participants-list {
        height: 510px;
        overflow-y: auto;
    }

.chat-header {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.input-group {
    position: absolute;
    bottom: 10px;
    width: 95%;
}

.question-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .question-header .asker {
        font-weight: bold;
        color: #333;
    }

    .question-header .receiver {
        color: #555;
        font-style: italic;
    }

.question-body {
    margin-bottom: 10px;
    color: #444;
}

.question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

    .question-footer .date {
        font-size: 12px;
    }

    .question-footer .status {
        display: flex;
        align-items: center;
    }

        .question-footer .status span {
            margin-left: 5px;
            color: green;
        }

.status-tick {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid green;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
    font-weight: bold;
    color: green;
}

.status button {
    margin-left: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

    .status button:hover {
        background-color: #0056b3;
    }
