.text-danger { color: red !important; }
.bg-danger { background-color: red !important; }

.navbar-brand img {
    transition: 0.2s;
}
.navbar-brand img:hover {
    transform: scale(1.05);
}


.card {
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25) !important;
}
.card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.card {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: red;
    font-weight: 700;
}

form {
    background: white;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

form input, form button {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

form button {
    background: red;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

form button:hover {
    background: black;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

table th {
    background: red;
    color: white;
    padding: 12px;
    font-size: 1.1rem;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background: #ffe6e6;
}

a {
    text-decoration: none;
    color: red;
    font-weight: bold;
}

a:hover {
    color: black;
}

.btn-danger, .btn-warning {
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
}

.btn-danger {
    background: red;
}

.btn-danger:hover {
    background: black;
}

.btn-warning {
    background: orange;
}

.btn-warning:hover {
    background: #cc7a00;
}

.admin-container {
    width: 90%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.admin-menu a {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 15px;
    background: red;
    color: white;
    border-radius: 6px;
}

.admin-menu a:hover {
    background: black;
}
h1{
    text-align: center;
}
h2{
    text-align: center;
}
.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;             
}
.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20vh;             
}