/*
 * Copyright (c) 2025 EUMETSAT  
 * License: Proprietary
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    background-color: black;
}

body {
    background: url('../images/world.png') no-repeat center center fixed;
    background-size: 50%;
    background-position: center;
}

.login_success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.header {
    font-size: 72px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.5),
        1px 1px 4px rgba(0, 0, 0, 0.3);
}

.warning-message {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #f59e0b;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.2);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
    gap: 8px;
}

.warning-message i {
    font-size: 15px;
    color: #f59e0b;
}

.warning-message .icon-start {
    margin-right: 10px;
}

.warning-message .icon-end {
    margin-left: 10px;
}

.custom-title-style {
    text-align: center;
    margin: 60px 0;
}

.custom-title-style h1 {
    font-size: 4em;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    padding: 10px 20px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
	letter-spacing: 0.12em;
	text-shadow: none;
}


.form-group {
    margin-bottom: 15px;
}
.login-form {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
    padding: 36px 32px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.form-control {
    width: 100%;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    padding: 11px 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #161616 inset !important;
    caret-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
}

.form-control:focus {
    border-color: #3d8ef8;
    box-shadow: 0 0 0 3px rgba(61,142,248,0.1);
}

.form-control::placeholder {
    color: #333333;
}
.btn-primary {
    width: 100%;
    background: #3d8ef8;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s ease, transform 0.1s ease;
    margin-top: 4px;
}

.btn-primary:hover  { background: #2b7de0; }
.btn-primary:active { transform: scale(0.99); }

.contact-support {
    margin-top: 20px;
}

.contact-support h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-support .btn-secondary {
    background-color: #6c757d;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.contact-support .btn-secondary i {
    margin-right: 8px;
}

.contact-support .btn-secondary:hover {
    background-color: #5a6268;
}

.footer {
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    color: #003366;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.page-header {
    background-color: #000033;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
        position: sticky;
    top: 0;
    z-index: 1000;
}

.user-header {
    background-color: #003366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.change-password-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    margin-left: 20px;
}

.change-password-link:hover {
    text-decoration: underline;
}

.forgot-password:focus, .forgot-password:active {
    outline: none;
    color: white; 
}

.forgot-password,
.forgot-password:visited,
.forgot-password:active {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
}

.forgot-password:hover {
    color: #ffffff;
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
}

#frame_header_logo img {
    height: 50px;
}

#frame_header_actions {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.login_error {
    color: #c9302c;
    font-weight: 500;
    font-size: 1.1em;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #c9302c;
    border-radius: 6px;
    background-color: #f2dede;
    text-align: center;
}

.error-message {
    margin: 0;
    padding: 0;
}

.password-reset {
    margin-top: 10px;
}

.password-reset-link {
    color: #c9302c;
    text-decoration: none;
    font-weight: bold;
}

.password-reset-link:hover {
    text-decoration: underline;
}

.footer-text {
    margin: 0;
}

.footer-text-highlight {
    color: #007bff;
    font-weight: bold;
}

.footer-link {
    color: #007bff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.icon-background {
    border-radius: 8px;
    padding: 12px;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-users {
    background-color: #7cb342;
    color: #ffffff;
}

.icon-divisions {
    background-color: #e67e22;
    color: #ffffff;
}

.dashboard-item span {
    color: #ffffff;
}

.dashboard-item:hover .icon-background.icon-users {
    background-color: #9ccc65;
    color: #ffffff;
}

.dashboard-item:hover .icon-background.icon-divisions {
    background-color: #f39c12;
    color: #ffffff;
}

.dashboard-item:hover span {
    color: #ffffff;
}

.icon-reviews {
    background-color: #3498db;
    color: #ffffff;
}

.dashboard-item:hover .icon-background.icon-reviews {
    background-color: #5dade2;
    color: #ffffff;
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    #frame_header_actions {
        margin-top: 10px;
    }
}

.elegant-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.elegant-table th, .elegant-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
}

.elegant-table th {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.elegant-table td {
    background-color: #ffffff;
}

.elegant-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.elegant-table tr:hover {
    background-color: #e9ecef;
}

.table-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-password-container-inside {
    margin-bottom: 20px;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}

.forgot-password-box {
    background: transparent;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: none;
}

.forgot-password-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #3d8ef8;
}

@media (max-width: 768px) {
    .elegant-table th, .elegant-table td {
        padding: 10px;
    }
}

.dashboard-item {
    color: #555555;
}

.dashboard-item:focus, .dashboard-item:hover {
    text-decoration: none;
}

tr.selected {
    background-color: #B0BED9;
}

.dataTables_info_up {
    margin: 20px 0 20px 0;
}

.dataTables_info_down {
    margin: 20px 0 20px 0;
}

td a {
    cursor: pointer;
}

td.dt-center, th.dt-center {
    text-align: center;
}

a.paginate_button {
    cursor: pointer;
}

td i.fa.fa-certificate {
    color: #3572b0;
}

.toolbar {
    float: left;
}

ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

.app-actions {
    text-align: right;
}

.nav-menu-user {
    margin-right: 10px;
}

.user-menu {
    color: black;
}

.user-menu-name {
    padding-left: 20px;
}

.clickable {
    cursor: pointer;
}

.row {
    margin-bottom: 0px;
}

.display_none {
    display: none;
}

