﻿/* Theme and global styles */
body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    margin: 0;
    padding: 0px;
}

/* Logo container */
.logo-container {
    text-align: center;
    padding: 0px 0;
}

.logo {
    /* Size of logo. 
      I am using max-width to keep it responsive.
      You can also use a fixed width and height.
    */
    max-width: auto; /* Adjust as needed */
    height: auto;
}

/* Carousel container */
.carousel-container {
    max-width: 300px; /* Adjust max-width as needed */
    position: relative;
    margin: 20px auto; /* Centered with space */
    border: 1px solid #444; /* Darker border */
}

/* Hide all slides by default */
.carousel-slide {
    display: none;
}

/* Style for the images */
.carousel-slide img {
    width: 100%;
    vertical-align: middle; /* Fixes small gap under image */
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* FADE animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* ⭐️ NEW: Dot Indicator Styles */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb; /* Inactive dot color */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* ⭐️ NEW: Active Dot Style & Hover Effect */
.active, .dot:hover {
	background-color: #000000; /* Active dot color or hover color */
}