@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600;700&display=swap');

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Asap', sans-serif;
    color: #333;
}

body {
    background-image: url('https://sandbox.zynyo.com/img/zynyo-bg-e14e71a9183b7c5b6bc8a9957227d937.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-selector-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: rgb(160, 172, 191);
    color: rgb(255, 255, 255);
    padding: 10px 16px;
    border: 1px solid rgb(160, 172, 191);
    border-radius: 8px;
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    background-color: rgb(140, 152, 171);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    color: rgb(255, 255, 255);
    background-color: rgb(24, 41, 82);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgb(34, 51, 92);
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 40px;
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.status-indicator {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.status-operational {
    background-color: #e6f7e6;
    color: #28a745;
}

.status-maintenance {
    background-color: #fff3cd;
    color: #856404;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.section-title {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: #444;
}

.maintenance-item {
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 4px solid #01B1E7;
}

.maintenance-item h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.maintenance-item .time {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

.maintenance-item .desc {
    font-size: 14px;
    margin: 0;
}

.btn-brand-1 {
    background-color: #01B1E7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.btn-brand-1:hover {
    background-color: #019bc9;
}

/* Specific overrides to match Zynyo login box exactly if needed */
.login-box-style {
    /* Add any specific tweaks here */
}