
    #submitbtn{ 
        margin-bottom:5px;
    }
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}
.container {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .course-category {
            margin-bottom: 20px;
        }

        .category-header {
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .price-row {
            display: flex;
            justify-content: space-around;
            margin-bottom: 10px;
        }

        .price-item {
            display: flex;
            align-items: center;
        }

        .price-item i {
            margin-right: 8px;
        }

        .price {
            font-weight: bold;
        }


        .fa-arrow-down {
            color: green;
        }

        .fa-exclamation {
            color: orange;
        }

        .fa-arrow-up {
            color: red;
        }

        .send-btn, .edit-btn {
            margin-top: 10px;
            background-color: #204d74;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .send-btn:hover, .edit-btn:hover {
            background-color: #15304a;
        }

header {
    background-color: #1b3b5f; 
    padding: 20px;
    text-align: left;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
label {
    display: block; 
    margin-bottom: 3px; 
    font-size: 14px;
}

input {
    width: 100%; 
    padding: 4px;
    margin-bottom: 5px; 
    border: 1px solid #ccc;
    box-sizing: border-box; 
}

nav {
    display: flex;
    justify-content: center;
    background-color: #204d74; 
    padding: 10px 0;
}
.price-range, .tutor-price-range {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    justify-content: center;
    gap: 15px;
}

.price-range i, .tutor-price-range i {
    margin-right: 8px;
    font-size: 1.4rem;
}

.price-range i {
    color: #28a745; 
}

.price-range span {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.price-range span i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.tutor-price-range i {
    color: #1b3b5f; 
}


.check-file-link {
    background-color: #1b3b5f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.check-file-link:hover {
    background-color: #15304a;
}

.check-file-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}


.check-file-link:hover {
    text-decoration: underline;
    transform: translateY(-2px); 
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}
.container2 {
    display: flex;
    justify-content: center;  
    align-items: center;      
    height: 100%;             
}
nav a:hover {
    color: #ffcc00; 
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: calc(50% - 20px);
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #1abc9c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #15304a;
}


h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1b3b5f;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: uppercase;
}


.training-videos {
    margin-top: 30px;
}

.training-videos h3 {
    font-size: 1.2rem;
    color: #1b3b5f;
}

.training-videos button {
    margin-top: 10px;
}


.test-section {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.test-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}


ul {
    list-style-type: none;
    padding-left: 0;
}


@media (max-width: 768px) {
    input[type="email"],
    input[type="password"],
    input[type="text"] {
        width: 100%;
    }
    .price-row {
                flex-direction: column;
                align-items: center;
            }

            .price-item {
                margin-bottom: 5px;
            }
    form {
        flex-direction: column;
        gap: 10px;
    }

    button {
        width: 100%;
    }
   .price-range, .tutor-price-range {
        flex-direction: column;
        align-items: center;
    }

    .price-range span {
        font-size: 1.1rem;
    }

    .tutor-price-range {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .check-file-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .check-file-btn {
    background-color: #1b3b5f; 
    color: white;
    padding: 12px 24px;
    border: none;
    display:flex;
    align-items: center;
    height:100%;
    border-radius: 5px;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.3s;
}

.check-file-btn:hover {
    background-color: #15304a; 
}

.center-button-container {
    text-align: center;
}
}


