﻿body {
}

/* General Reset */
* {
    margin: 0;
    /* padding: 0;*/
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}
/* Container styling */
.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
 }

/* Header */
.header {
    text-align: center;
    padding: 10px;
    background-color: #edeaeaeb /*#0e4d92 /rgba(71, 136, 255, 0.2) */;
    color: #000000;
    border-radius: 10px 10px 0 0;
    height: 100px;
}

    .header h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

/* Instructions Section */
.instructions {
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
    background-color: #e9f3fd;
    border-left: 5px solid #edeaeaeb;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Form Layout */
.payment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.student-info, .fees-info, .payment-methods {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

    /* Student Information Styling */
    .student-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .student-info .form-group {
        margin-bottom: 15px;
    }

    .student-info label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

    .student-info input, .student-info select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        /*  background-color: #fff;
        color: #333;*/
        font-size: 14px;
    }

    /* Fees Section */
    .fees-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .fees-info table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

        .fees-info table th, .fees-info table td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
            color: #555;
        }

        .fees-info table th {
            background-color: #f2f4f6;
            font-weight: bold;
        }

    .fees-info .total {
        font-weight: bold;
        text-align: right;
        padding-top: 15px;
        margin-bottom: 15px;
    }

    .fees-info .due-date {
        display: inline-block;
        background-color: #ffeced;
        padding: 10px;
        border-radius: 5px;
        color: #d9534f;
        margin-bottom: 15px;
        font-size: 14px;
    }

    /* Payment Methods Section */
    .payment-methods h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .payment-methods .method {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        padding: 10px;
        background-color: #f1f4f8;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
    }

        .payment-methods .method:hover {
            background-color: #dfe8f0;
        }

    /* .payment-methods input[type="radio"] {
        margin-right: 10px;
    } */
    .payment-methods input[id="rbtlPayOptions"] {
        margin-right: 10px;
    }

/* Buttons */
.button-group {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0e4d92;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .button:hover {
        background-color: #093c7a;
    }

    .button.cancel {
        background-color: #f44336;
    }

        .button.cancel:hover {
            background-color: #d32f2f;
        }

/* Style for Fee Type and Receipt Status */
/**/ .fees-options {
    /*margin-bottom: 30px;*/
    /*padding: 20px;*/
    /*  background-color: #f8f8f8;
            border-radius: 5px;
            border: 1px solid #ddd;*/
}

    .fees-options h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }

.fee-type, .receipt-status {
    margin-bottom: 10px;
}

    .fee-type label, .receipt-status label {
        margin-right: 20px;
        font-weight: 500;
    }

    .fee-type input, .receipt-status input {
        margin-right: 5px;
    }
/**/

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .payment-form {
        flex-direction: column;
    }

    .button-group {
        justify-content: center;
    }
}
