/* Community Health Nursing Training School - Akim Oda Stylesheet */

/* ===== News & Events Cards ===== */
.news-card,
.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover,
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-image,
.event-image {
    height: 200px;
    overflow: hidden;
}

.news-image img,
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content,
.event-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-card h4,
.event-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.event-venue {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* ===== Base Styles ===== */
:root {
    --primary-color: #1a5c3a;
    --secondary-color: #2d8659;
    --accent-color: #4caf50;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #1a5c3a;
    --text-color: #333;
    --text-muted: #7f8c8d;
    --border-color: #ddd;
    --gradient-primary: linear-gradient(135deg, #1a5c3a 0%, #2d8659 100%);
    --gradient-secondary: linear-gradient(135deg, #2d8659 0%, #4caf50 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-right {
    text-align: right;
}

.social-link {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

/* ===== Navigation ===== */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    gap: 15px;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-toggler {
    border: none;
    background: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 5px;
    cursor: pointer;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    color: var(--primary-color);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--light-color);
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--secondary-color);
    color: #fff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* ===== Hero Slider Section ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Carousel Custom Styles */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .carousel-item-left,
.carousel-fade .carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-left,
.carousel-fade .carousel-item.active.carousel-item-prev {
    transform: translateX(0);
    opacity: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 20px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 8px;
}

.carousel-indicators button.active {
    background-color: #fff;
    width: 35px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-link {
    background: transparent;
    color: var(--secondary-color);
    padding: 8px 0;
    text-transform: none;
    letter-spacing: normal;
}

.btn-link:hover {
    color: var(--primary-color);
}

/* ===== Sections ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* ===== Program Cards ===== */
.program-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 92, 58, 0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(26, 92, 58, 0.15);
    border-color: var(--primary-color);
}

.program-card .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.program-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(26, 92, 58, 0.3);
}

.program-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.program-card:hover h3 {
    color: var(--secondary-color);
}

.program-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ===== News & Events ===== */
.news-item, .event-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child, .event-item:last-child {
    border-bottom: none;
}

.news-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-item h4 a {
    color: var(--primary-color);
    font-weight: 600;
}

.news-item h4 a:hover {
    color: var(--secondary-color);
}

.event-item {
    display: flex;
    align-items: flex-start;
}

.event-date {
    min-width: 80px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 15px 10px;
    margin-right: 20px;
}

.event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-details h4 a {
    color: var(--primary-color);
    font-weight: 600;
}

.event-time, .event-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ===== Quick Links ===== */
.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.quick-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-5px);
}

.quick-link i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quick-link span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Stats ===== */
.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.contact-info i {
    width: 20px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    .carousel-indicators button.active {
        width: 25px;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        background-color: #fff;
        padding: 10px 0;
        margin-top: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        margin: 0;
        border-radius: 5px;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background-color: #f8f9fa !important;
        padding-left: 20px;
    }
    
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 20px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .quick-link {
        padding: 20px;
    }
}

/* Leadership Card Styles */
.leadership-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leadership-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leadership-info {
    padding: 25px;
}

.leadership-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a5c3a;
}

.leadership-info .position {
    font-size: 0.95rem;
    margin: 0;
    color: #6c757d;
}

/* Faculty Card Styles */
.faculty-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid #e9ecef;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #1a5c3a;
}

.faculty-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a5c3a 0%, #2d8a5e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-icon-wrapper i {
    color: white;
}

.faculty-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
}

.faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.faculty-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a5c3a;
}

.faculty-card .position {
    font-size: 0.95rem;
    margin: 0 0 5px;
    font-weight: 500;
}

.faculty-card .department {
    font-size: 0.9rem;
    margin: 0;
}

/* Table Avatar Styles */
.table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

/* Program Card Styles */
.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.program-icon-wrapper {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #1a5c3a 0%, #2d8a5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon-wrapper i {
    color: white;
}

.program-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a5c3a;
}

.program-content p {
    margin-bottom: 15px;
    color: #6c757d;
    flex: 1;
}

.program-content .btn-link {
    color: #1a5c3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.program-content .btn-link:hover {
    color: #2d8a5e;
}

/* ===== Application Steps ===== */
.application-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.application-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Additional Utility Classes ===== */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 0.375rem !important;
}

/* ===== Form Styles ===== */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* ===== Alert Styles ===== */
.alert {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
}
