.contract-container {
    text-align: start;
}

.contract-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-tabs {
    justify-self: center;
}

    .nav-tabs .nav-link {
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        margin-right: 5px;
        font-weight: 500;
        color: #6c757d;
        padding: 10px;
        font-size: 16px;
    }

        .nav-tabs .nav-link.active {
            background-color: #007bff;
            border-color: #007bff;
            color: white;
            border-radius: 4rem;
        }

.tab-content {
    background: white;
    border-radius: 0 0.5rem 0.5rem 0.5rem;
    min-height: 500px;
}

.contract-section h3 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.contract-section h4 {
    color: #343a40;
    margin-top: 25px;
    margin-bottom: 15px;
}

.contract-section h5 {
    color: #6c757d;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section {
    border-left: 3px solid #e9ecef;
    padding-left: 20px;
    margin-bottom: 25px;
    font-size: 16px;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 4px solid #17a2b8;
}

.table-responsive {
    margin-top: 15px;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

@media (max-width: 768px) {
    .nav-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .nav-tabs .nav-link {
            font-size: 1.6rem;
            padding: 0.5rem 0.75rem;
            margin-right: 2px;
            margin-bottom: 5px;
            text-align: left;
        }

    .contract-container {
        padding: 10px;
    }

    .contract-section {
        padding: 15px !important;
    }
}