.footer {
	background-image: url('http://pecancms.co.uk//themes/default/images/footer-pecan-max.webp');
    background-repeat: repeat;
	background-position: left top; /* Adjust as needed */
            color: #ffffff;
            text-align: center;
            padding: 1.5rem 0; /* Reduce padding */
            font-size: 0.9rem; /* Decrease overall text size */
        }
        .footer h5 {
            font-size: 1rem; /* Smaller headings */
        }
        .footer .social-icon i {
            font-size: 1.25rem; /* Reduce social icons */
        }
        .footer .footer-link {
            font-size: 0.875rem; /* Smaller quick links */
        }
        .footer .border-secondary {
            margin: 0.5rem 0; /* Reduce separator spacing */
        }
        .alert-container {
            margin-top: 20px;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
            color: #333;
        }
        .alert-container p {
            margin: 0;
        }
        .dark-mode {
            background-color: #121212;
            color: white;
        }
        .btn {
            padding: 5px;
            font-size: 11pt;
			text-transform: none;
            border-radius: 4px;
        }
        /* Dark Mode Styling */
        .dark-mode .navbar {
            background-color: #1a1a1a;
        }
        .dark-mode .footer {
            background: linear-gradient(to bottom, #2a2a2a, #121212);
        }
        .dark-mode body {
            background-color: #121212;
        }
	.footer-link {
        transition: color 0.3s ease-in-out;
    }
    .footer-link:hover {
        color: #ffffff; /* Bootstrap primary color */
    }
    .social-icon {
        transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
    }
    .social-icon:hover {
        transform: scale(1.2);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
	.spoiler {
    background-color: #222;
    color: #222;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.spoiler::after {
    content: "Hidden Spoiler: Click to reveal";
    font-size: 12px;
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 10px;
}

.spoiler:hover {
    color: #222;
}

.spoiler.revealed {
    color: #fff;
    background-color: #444;
}

.quote {
    border-left: 4px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 14px;
    max-width: 100%;
}

.quote-header {
    font-weight: bold;
    color: #555;
    background-color: #e9e9e9;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
}

.quote-body {
    padding: 10px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}
.active-component {
    /* Active component styles (e.g., border color, text color) */
    border: 2px solid #28a745; /* Green border for active components */
}

.inactive-component {
    /* Inactive component styles (e.g., dimmed appearance) */
    opacity: 0.5; /* Dim inactive components */
    border: 2px solid #dc3545; /* Red border for inactive components */
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-secondary {
    background-color: #6c757d;
}
.recent-posts ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove left padding */
}

.recent-posts li {
    margin-bottom: 2px; /* Optional: Adds space between items */
}