﻿/* Judgment content styling */
#judgmentText {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

    #judgmentText h1 {
        font-size: 2.5rem;
        font-weight: bold;
        border-bottom: 3px solid #dc2b19;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
    }

    #judgmentText h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #dc2b19;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    #judgmentText h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #272a35;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    #judgmentText strong {
        color: #272a35;
        font-weight: bold;
    }

    #judgmentText em {
        font-style: italic;
        color: #666;
    }

/* Print styles */
@media print {
    .card-header,
    .card-footer,
    #actionButtons {
        display: none !important;
    }

    .card {
        border: none !important;
        box-shadow: none !important;
    }

    #judgmentText {
        font-size: 12pt;
        line-height: 1.6;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    #judgmentText {
        font-size: 1rem;
        line-height: 1.6;
    }

        #judgmentText h1 {
            font-size: 2rem;
        }

        #judgmentText h2 {
            font-size: 1.5rem;
        }

    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }

        .btn-group .btn {
            width: 100%;
        }
}


/* Custom scrollbar for judgment content */
#judgmentText {
    max-height: 70vh;
    overflow-y: auto;
}

    #judgmentText::-webkit-scrollbar {
        width: 8px;
    }

    #judgmentText::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    #judgmentText::-webkit-scrollbar-thumb {
        background: #dc2b19;
        border-radius: 10px;
    }

        #judgmentText::-webkit-scrollbar-thumb:hover {
            background: #b82314;
        }
