/* International Military Time Usage - Specific Styles */

/* Breadcrumb styles */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-top: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
}

/* Main content styles */
.international-container {
    padding: 3rem 0;
}

.international-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.international-header h1 {
    color: #343a40;
    margin-bottom: 1rem;
    font-weight: 700;
}

.international-header .author-info {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.section-title {
    color: #0d6efd;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.subsection-title {
    color: #343a40;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Country comparison table */
.country-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.country-table thead tr {
    background-color: #0d6efd;
    color: #ffffff;
    text-align: left;
}

.country-table th,
.country-table td {
    padding: 12px 15px;
    text-align: center;
}

.country-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.country-table tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

.country-table tbody tr:last-of-type {
    border-bottom: 2px solid #0d6efd;
}

.country-table .country-name {
    text-align: left;
    font-weight: 500;
}

/* World map section */
.world-map-container {
    margin: 2.5rem 0;
    text-align: center;
}

.world-map {
    max-width: 100%;
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #6c757d;
}

/* Example box styles */
.example-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.example-box h4 {
    color: #0d6efd;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Info box styles */
.info-box {
    background-color: #e8f4f8;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: #0c5460;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Country cards */
.country-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2rem 0;
}

.country-card {
    flex: 1 1 300px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country-card-header {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.country-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.country-card-body {
    padding: 15px;
}

.country-flag {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Citation styles */
.citation {
    font-size: 0.85rem;
    color: #6c757d;
    border-left: 3px solid #dee2e6;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-cards {
        flex-direction: column;
    }
    
    .country-table {
        display: block;
        overflow-x: auto;
    }
}

/* Print styles */
@media print {
    .breadcrumb-container, 
    nav, 
    footer, 
    .dark-mode-toggle, 
    #print-guide,
    .btn {
        display: none !important;
    }
    
    .international-container {
        padding: 0;
    }
    
    .country-table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .country-table th {
        background-color: #f0f0f0 !important;
        color: #000 !important;
    }
} 