/* styles.css */

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    min-height: 100vh;
}

/* Navbar */
nav {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position:fixed;
    top:-5px;
    width: 100%;
    z-index: 50;
    padding: 15px 20px;
}

nav h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
}

/* Section */
.bg-white {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.text-center {
    text-align: center;
}

h1 {
    font-size: 1.75rem;
    color: #ff6700;
    margin-bottom: 15px;
}

label1 {
    font-size: 14px;
    color: #333;
    font-weight:bold;
    margin-bottom: 5px;
    display: block;
}

input, select, button {
    width: 100%;
    padding: 3px;
    border: 1px solid #808080;
    border-radius: 6px;
    margin-top: 8px;
}

input:focus, select:focus {
    border-color: #007BFF;
    outline: none;
}

button {
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.text-red-500 {
    color: #e3342f;
}

/* Grid System */
.grid {
    display: grid;
    gap: 20px;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}
