.version-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.version-container_title {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.version-container_table {
    border-collapse: collapse;
    width: 100%;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.version-container_table th {
    background-color: #34495e;
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.version-container_table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: top;
    font-size: 0.9rem;
    line-height: 1.4;
}

.version-container_table tr:last-child td {
    border-bottom: none;
}

.version-container_table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.version-container_table tr:hover {
    background-color: #e8f4fd;
    transition: background-color 0.2s ease;
}

/* Version column styling */
.version-container_table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

/* Date column styling */
.version-container_table td:nth-child(2) {
    color: #7f8c8d;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Link column styling */
.version-container_table_link {
    color: #3498db;
    text-decoration: none;
    word-break: break-all;
    font-size: 0.85rem;
}

.version-container_table_link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Comment column styling */
.version-container_table td:last-child {
    color: #2c3e50;
    max-width: 300px;
}

/* Responsive design */
@media only screen and (max-width: 768px) {
    .version-container {
        margin: 1rem;
        padding: 0 0.5rem;
    }
    
    .version-container_title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .version-container_table th,
    .version-container_table td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .version-container_table td:last-child {
        max-width: 200px;
    }
}

@media only screen and (max-width: 600px) {
    .version-container_table {
        font-size: 0.8rem;
    }
    
    .version-container_table th,
    .version-container_table td {
        padding: 6px 8px;
    }
    
    /* Hide date column on very small screens */
    .version-container_table th:nth-child(2),
    .version-container_table td:nth-child(2) {
        display: none;
    }
    
    .version-container_table td:last-child {
        max-width: 150px;
    }
}

/* Print styles */
@media print {
    .version-container_table {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .version-container_table th {
        background-color: #f2f2f2 !important;
        color: #000 !important;
    }
    
    .version-container_table tr:nth-child(even) {
        background-color: #f9f9f9 !important;
    }
    
    .version-container_table_link {
        color: #000 !important;
        text-decoration: underline;
    }
}