/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: url('images/flyer-background10.png') no-repeat center center fixed; 
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}



table.table {
    margin-top: 20px;
}

td {
    height: 80px;
    width: 80px;
    text-align: center;
    vertical-align: middle;
}

td.bg-success {
    background-color: green !important;
}


float: {
  responsive: true,
  property: float,
  values: (
    start: left,
    end: right,
    none: none,
  )
}


.my-5 {
    background-color: #c0c0c0;
    padding: 1rem;
}
/* Admin Page Container */
.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Headings */
h1, h3 {
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* Form Field Styling */
form label {
    font-weight: bold;
    color: #0056b3; /* Blue */
}

form input, form textarea, form select {
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

form input[type="file"] {
    border: none;
}

/* Buttons */
.btn-primary {
    background-color: #d9534f; /* Red */
    border-color: #d43f3a; /* Darker red */
    color: white;
}

.btn-primary:hover {
    background-color: #c9302c;
    border-color: #ac2925;
}

/* Card Styles (Landing Page) */
.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* max-height: 200px; */
    object-fit: cover;
}

.card-title {
    color: #d9534f; /* Red */
    font-size: 1.5rem;
}

.card-subtitle {
    color: #0056b3; /* Blue */
}

.card-text {
    color: #555;
}

.card-link {
    color: #0056b3; /* Blue */
}

.card-link:hover {
    text-decoration: underline;
}

/* General Links */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}