﻿:root {
    --theme-color: #40b3d1;
    --theme-dark: #2a7a8f;
    --theme-light: #e1f0f4;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f7fa;
}

.header-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.card {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.card-header {
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px 5px 0 0 !important;
    padding: 12px 15px;
    font-weight: 600;
}

.btn-theme {
    background-color: var(--theme-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
}

    .btn-theme:hover {
        background-color: var(--theme-dark);
        color: white;
    }

.btn-theme-outline {
    background-color: white;
    border: 1px solid var(--theme-dark);
    color: var(--theme-color);
    background: transparent;
    font-weight: 500;
}

    .btn-theme-outline:hover {
        background-color: var(--theme-light);
    }

.table-responsive {
    border-radius: 5px;
    overflow: hidden;
}

table.table thead th {
    background-color: var(--theme-color);
    color: white;
    border: none;
    padding: 12px;
}

table.table tbody tr:nth-child(even) {
    background-color: var(--theme-light);
}

.info-box {
    background-color: white;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--theme-color);
}

    .info-box.warning {
        border-left: 3px solid #ffc107;
    }

    .info-box.danger {
        border-left: 3px solid #dc3545;
    }

.timeline {
    position: relative;
    padding-left: 20px;
}

    .timeline:before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: var(--theme-color);
    }

.timeline-item {
    position: relative;
    padding-bottom: 15px;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--theme-color);
    transform: translateX(-50%);
    margin-left: 8px;
}

/* Original navbar styles */
.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

.navbar-toggle {
    border-color: #333;
}

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

.footer {
    background-color: var(--dark-color) !important;
    color: white !important;
    padding: 15px 0 !important;
    margin-top: 30px !important;
    font-size: 0.9rem !important;
}

@media (max-width: 768px) {
    .card-header {
        padding: 10px 12px;
        font-size: 1rem;
    }
}

.rrc-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.rrc-logo {
    max-height: 80px;
    width: auto;
}

.rrc-text {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #2f3197;
}

.rrc-title {
    font-size: 20px;
    font-weight: bold;
}

.rrc-subtitle {
    font-size: 16px;
    font-weight: 600;
}

.rrc-address {
    font-size: 14px;
/*    color: #333;*/
}

@media (max-width: 576px) {
    .rrc-title,
    .rrc-subtitle,
    .rrc-address {
        text-align: center;
    }

    .rrc-logo {
        margin: 0 auto 10px auto;
        display: block;
    }
}
