    body {
        background-color: #121212;
        color: #ffffff;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    h2 {
        text-align: center;
        font-family: 'arial', sans-serif;
        margin-top: 20px;
    }

    h3 {
        font-family: 'Times New Roman', sans-serif;
        color: #E894FF;
        margin-top: 4px;
        margin-bottom: 9px;
        text-align: center;
    }


    .container {
        max-width: 800px;
        margin: 30px auto 20px;
        padding: 20px;
        background-color: #1e1e1e;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }

    .input-config {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 50px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
        flex: 1 1 200px;
        /* Adjusts width and ensures wrapping */
    }

    label {
        margin-bottom: 0.5rem;
    }


    input {
        padding: 0.5rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    input[type=text] {
        border-radius: 0px;
        background-color: #f3e5f5;
        border: 1px solid #CC99FF;
        border-radius: 3px;
        font-weight: bold;
    }


    .actions {
        text-align: center;
        margin-top: 20px;
    }

    .actions button {
        padding: 10px 20px;
        margin: 5px;
        border: none;
        border-radius: 5px;
        background-color: #333333;
        color: white;
        cursor: pointer;
    }

    .actions button:hover {
        background-color: #444444;
    }

    .full-width {
        flex: 1 1 100%; /* Takes full width of the parent container */
        text-align: center; /* Centers the button */
    }
    


    .btn {

        padding: 0.75rem 1.5rem;
        color: white;
        cursor: pointer;

        box-shadow: inset 0px 1px 0px 0px #efdcfb;
        background-image: linear-gradient(to right, #8000FF, #DE00FF);
        border-radius: 6px;
        border: 1px solid #c584f3;
        color: #ffffff;
        font-family: Arial;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
        text-shadow: 0px 1px 0px #9752cc;
    }

    .btn:hover {
        background-color: #bc80ea;
    }

    .btn:active {
        position: relative;
        top: 1px;
    }
    #result {
        margin-top: 20px;
        padding: 20px;
        background: linear-gradient(145deg, #1e1e1e, #2c2c2c);
        border-radius: 15px;
        box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.6), -8px -8px 15px rgba(50, 50, 50, 0.3);
        color: white;
        font-family: 'Arial', sans-serif;
    }
    
    #result h3 {
        margin-bottom: 20px;
        font-size: 1.8em;
        text-align: center;
        color: #E894FF;
        border-bottom: 2px solid #E894FF;
        padding-bottom: 10px;
    }
    
    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        margin: 5px 0;
        background: #1e1e1e;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .result-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .result-item strong {
        font-size: 1.1em;
        color: #ffffff;
    }
    
    .result-item span {
        font-size: 1.2em;
        font-weight: bold;
    }
    
    .marksScored {
        color: #F9D342; /* Modern green */
    }

    .totalMarks {
        color: #43d7ff; /* Modern green */
    }

    .percentage {
        color: #c3acf0; /* Modern green */
    }


    .correctTotal {
        color: #9ed559; /* Modern green */
    }
    
    .incorrectTotal {
        color:  #EC4D37 /* Modern red */
    }

    .totalques {
        color:  #43d7ff; /* Modern red */
    }
    
    .attempted {
        color: #9ed559; /* Modern orange */
    }
    .unattempted {
        color: #f6a6a0; /* Modern orange */
    }

    
    
