﻿body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

h1, h5 {
    color: #007bff;
}

.row {
    margin: 20px 0;
}

.col-md-4 {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #495057;
}

input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-check {
    margin-bottom: 10px;
}

.image-preview {
    max-width: 50%;
    height: auto;
    display: block;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        color: #0056b3;
    }

/* Additional styles for smaller screens */
@media (max-width: 768px) {
    .col-md-4 {
        padding: 20px;
    }
}

/* Custom styling for all radio buttons */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 4px;
    width: 25px;
    height: 25px;
    margin: 0;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 5px;
}

    input[type="radio"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
