:root {
    --primary-color: #000080; /* Navy Blue (closer to Royal Blue) */
    --secondary-color: #8A2BE2; /* Blue Violet (Royal Purple) */
    --accent-color: #FFD700; /* Gold */
    --text-dark: #333;
    --text-light: #f9f9f9; /* White for text on dark backgrounds */
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a2e; /* Darker background for footer */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 56px; /* To prevent content from being hidden by fixed navbar */
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Gradient background */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Stronger shadow */
    transition: background-color 0.3s ease;
    padding: 0.5rem 1rem; /* Slightly more padding */
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem; /* Base font size for brand text */
    font-weight: bold;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-logo {
    height: 40px; /* Fixed height for the logo */
    width: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make it round if it's a square image */
    border: 2px solid var(--accent-color); /* Gold border around logo */
    box-shadow: 0 0 8px rgba(255,215,0,0.5); /* Glowing effect for logo */
    transition: transform 0.3s ease;
}
.navbar-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem; /* More padding for links */
    border-radius: 25px; /* Rounded pill shape for links */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav-item.active .nav-link,
.nav-link:hover {
    background-color: rgba(255,255,255,0.2); /* Subtle white highlight on hover/active */
    color: var(--accent-color) !important; /* Gold text on hover/active */
    transform: translateY(-2px);
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.5); /* Lighter border for toggler */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* White toggler icon */
}

/* Responsive Adjustments for Navbar */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.3rem; /* Smaller font for brand text on tablets */
    }
    .navbar-logo {
        height: 35px; /* Smaller logo on tablets */
    }
    .nav-link {
        padding: 0.6rem 1rem; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem; /* Even smaller font for brand text on mobiles */
    }
    .navbar-logo {
        height: 30px; /* Smaller logo on mobiles */
    }
    .navbar-collapse {
        background-color: var(--primary-color); /* Solid background for collapsed menu */
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .navbar-nav .nav-item {
        margin-bottom: 5px; /* Spacing between menu items */
    }
    .navbar-nav .nav-link {
        width: 100%; /* Full width links in collapsed menu */
        text-align: center;
        background-color: rgba(255,255,255,0.1); /* Light background for items */
    }
    .navbar-nav .nav-link:hover {
        background-color: rgba(255,255,255,0.3); /* Darker background on hover */
    }
    .d-none.d-sm-inline { /* Ensure text is hidden on small screens */
        display: none !important;
    }
}

@media (min-width: 769px) { /* Show text on larger screens */
    .d-none.d-sm-inline {
        display: inline !important;
    }
}

/* Add these to your existing style.css */
/* Ensure these color variables are defined in your :root */

:root {
    --primary-color: #000080;
    --secondary-color: #8A2BE2;
    --accent-color: #FFD700;
    --text-light: #f9f9f9;
}
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 56px; /* To prevent content from being hidden by fixed navbar */
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}
.navbar-brand, .nav-link {
    color: var(--text-light) !important;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.navbar-brand:hover, .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Carousel Styling */
#carouselExampleIndicators {
    margin-top: 0; /* No extra margin here, body padding handles it */
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative; /* For proper positioning of elements inside */
}
.carousel-inner {
    border-radius: 10px;
}
.carousel-item img {
    height: 550px; /* Adjusted height for better balance */
    object-fit: contain; /* Changed to 'contain' to show full image, not zoomed */
    width: 100%;
    background-color: rgba(0,0,0,0.1); /* Background if image doesn't cover */
    padding: 20px; /* Add padding to prevent images touching edges */
    filter: brightness(0.9); /* Slightly less dim */
    transition: transform 0.5s ease-in-out;
}
.carousel-item.active img {
    transform: scale(1); /* Ensure no initial zoom */
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.75); /* Darker overlay for better text readability */
    padding: 20px 30px;
    border-radius: 8px;
    bottom: 30px;
    left: 10%;
    right: 10%;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.carousel-caption h5 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.carousel-caption p {
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Increased to 3 lines for more detail */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.carousel-control-prev, .carousel-control-next {
    width: 7%; /* Slightly larger control area */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-color); /* Use primary color for controls */
    border-radius: 50%;
    padding: 25px; /* Larger icons */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* General Section Styling */
.section-title {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.card {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 30px;
    overflow: hidden; /* For images within cards */
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.card-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}
.card-text {
    color: var(--text-dark);
    font-size: 0.95rem;
}
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}
.form-group label {
    font-weight: bold;
    color: var(--primary-color);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}
.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    font-weight: 800;
}
.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-section .btn-light {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-section .btn-light:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}
.cta-section .btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.cta-section .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Styling */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 0.95rem;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}
.footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: underline;
}
.footer .social-icons a {
    color: var(--text-light);
    margin: 0 12px;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.2s ease;
}
.footer .social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}
.footer h5 {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 20px;
}
.footer ul {
    padding-left: 0;
    list-style: none;
}
.footer li {
    margin-bottom: 8px;
}

/* News and Subscribe sections */
.news-item img {
    height: 180px;
    object-fit: cover;
}

.subscribe-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}
.subscribe-section h2 {
    color: var(--accent-color);
}
.subscribe-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.subscribe-form .form-control {
    background-color: rgba(255,255,255,0.9);
    border: none;
    color: var(--text-dark);
    padding: 10px 20px;
    height: auto;
}
.subscribe-form .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 10px 30px;
}
.subscribe-form .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    body { padding-top: 56px; } /* Ensure consistent padding */
    .carousel-item img {
        height: 450px; /* Slightly reduced height */
        padding: 15px;
    }
    .carousel-caption h5 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .cta-section h2 {
        font-size: 2.8rem;
    }
    .cta-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 350px;
        padding: 10px;
    }
    .carousel-caption {
        padding: 15px 20px;
        bottom: 15px;
        width: 90%;
    }
    .carousel-caption h5 {
        font-size: 1.4rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .nav-link {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .footer .social-icons a {
        font-size: 1.4rem;
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 280px;
        padding: 5px;
    }
    .carousel-caption {
        padding: 10px 15px;
        bottom: 10px;
        width: 95%;
    }
    .carousel-caption h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .carousel-caption p {
        font-size: 0.75rem;
        -webkit-line-clamp: 5;
    }
    .carousel-control-prev, .carousel-control-next {
        width: 10%;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        padding: 15px;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .section-title::after {
        width: 60px;
    }
    .cta-section {
        padding: 40px 0;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 0.9rem;
    }
    .btn-lg {
        width: 100%;
        margin-bottom: 15px !important;
    }
    .subscribe-form .input-group {
        flex-direction: column;
    }
    .subscribe-form .form-control {
        margin-bottom: 15px;
    }
}
/* Add these to your existing style.css */

/* Admin Dashboard Specific Styles (from admin_dashboard.php) */
#wrapper {
    display: flex;
}
#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin .25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}
#sidebar-wrapper .list-group {
    width: 15rem;
}
#page-content-wrapper {
    min-width: 0;
    width: 100%;
}
#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}
@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }
}

.admin-nav .list-group-item {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.admin-nav .list-group-item:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
    color: var(--accent-color);
}
.admin-nav .list-group-item.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.admin-nav .list-group-item a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* News Section Specific Styles */
.news-card {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.news-card .card-img-top {
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.news-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.news-card .news-snippet {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    /* Limit lines for snippet consistency */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
.news-card .btn-primary {
    align-self: flex-start; /* Aligns button to the left */
}

/* News Detail Page Styles */
.news-detail-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.1);
}
.news-detail-image {
    max-height: 450px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* Ensures entire image is visible */
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.news-content p {
    margin-bottom: 1rem;
}
/* Ensure these color variables are defined in your :root selector at the top of your style.css */
:root {
    --primary-color: #000080; /* Navy Blue (closer to Royal Blue) */
    --secondary-color: #8A2BE2; /* Blue Violet (Royal Purple) */
    --accent-color: #FFD700; /* Gold */
    --text-dark: #333;
    --text-light: #f9f9f9; /* White for text on dark backgrounds */
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a2e; /* Darker background for footer or sidebars */
}

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Gradient background */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Stronger shadow */
    transition: background-color 0.3s ease;
    padding: 0.5rem 1rem; /* Slightly more padding */
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem; /* Base font size for brand text */
    font-weight: bold;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-logo {
    height: 40px; /* Fixed height for the logo */
    width: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make it round if it's a square image */
    border: 2px solid var(--accent-color); /* Gold border around logo */
    box-shadow: 0 0 8px rgba(255,215,0,0.5); /* Glowing effect for logo */
    transition: transform 0.3s ease;
}
.navbar-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem; /* More padding for links */
    border-radius: 25px; /* Rounded pill shape for links */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav-item.active .nav-link,
.nav-link:hover {
    background-color: rgba(255,255,255,0.2); /* Subtle white highlight on hover/active */
    color: var(--accent-color) !important; /* Gold text on hover/active */
    transform: translateY(-2px);
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.5); /* Lighter border for toggler */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* White toggler icon */
}

/* Responsive Adjustments for Navbar */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.3rem; /* Smaller font for brand text on tablets */
    }
    .navbar-logo {
        height: 35px; /* Smaller logo on tablets */
    }
    .nav-link {
        padding: 0.6rem 1rem; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem; /* Even smaller font for brand text on mobiles */
    }
    .navbar-logo {
        height: 30px; /* Smaller logo on mobiles */
    }
    .navbar-collapse {
        background-color: var(--primary-color); /* Solid background for collapsed menu */
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .navbar-nav .nav-item {
        margin-bottom: 5px; /* Spacing between menu items */
    }
    .navbar-nav .nav-link {
        width: 100%; /* Full width links in collapsed menu */
        text-align: center;
        background-color: rgba(255,255,255,0.1); /* Light background for items */
    }
    .navbar-nav .nav-link:hover {
        background-color: rgba(255,255,255,0.3); /* Darker background on hover */
    }
    .d-none.d-sm-inline { /* Ensure text is hidden on small screens */
        display: none !important;
    }
}

@media (min-width: 769px) { /* Show text on larger screens */
    .d-none.d-sm-inline {
        display: inline !important;
    }
}
/* Color Variables */
:root {
    --royal-blue: #002366;
    --gold: #FFD700;
    --royal-purple: #7851A9;
    --light-gold: #FFF4BD;
    --light-purple: #E6E6FA;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Prayer Wall Container */
.prayer-wall-container {
    background: linear-gradient(135deg, var(--light-purple) 0%, white 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

/* Header Styles */
.prayer-header {
    background: linear-gradient(to right, var(--royal-blue), var(--royal-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prayer-header h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.prayer-header .lead {
    color: var(--gold);
    font-weight: 300;
    font-size: 1.25rem;
}

/* Prayer Cards */
.prayer-card {
    border: none;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border-left: 4px solid var(--royal-purple);
}

.prayer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.prayer-card .card-body {
    padding: 1.5rem;
}

.prayer-card .user-info {
    color: var(--royal-blue);
    font-weight: 500;
}

.prayer-card .date-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.prayer-card .card-text {
    color: #495057;
    line-height: 1.6;
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--light-gold);
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

/* Prayer Button */
.prayer-btn {
    background-color: var(--royal-purple);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prayer-btn:hover {
    background-color: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.prayer-btn:active {
    transform: translateY(0);
}

.prayer-btn i {
    margin-right: 8px;
}

/* Submit Button */
.submit-btn {
    background-color: var(--gold);
    color: var(--royal-blue);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background-color: var(--royal-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* No Requests Message */
.no-requests {
    background-color: var(--light-purple);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px dashed var(--royal-purple);
}

.no-requests p {
    color: var(--royal-blue);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .prayer-wall-container {
        padding: 1rem;
    }
    
    .prayer-header {
        padding: 1rem;
    }
    
    .prayer-header h1 {
        font-size: 1.75rem;
    }
}