/* Reset & Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}


/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.btn-warning,
.btn-danger {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    font-weight: 500;
}

    .btn-warning:hover {
        background-color: #e0a800;
    }

    .btn-danger:hover {
        background-color: #c82333;
    }

/* Section: Info Cards */
.Stores-info {
    padding: 1rem;
}

.info {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #000; /* changed from blue to black */
    max-width: 90%;
}

    .info:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* kept this black as well */
    }

    .info h4 {
        font-size: 1.25rem;
        color: #444;
        margin-bottom: 0.5rem;
    }

    .info p {
        margin-bottom: 0.6rem;
        color: #555;
    }

    .info i {
        margin-right: 0.4rem;
        color: #000; /* changed from blue to black */
    }

/* Admin-specific styling */
.admin-card {
    border-left: 6px solid #28a745 !important;
}

.gap-2 > * {
    margin-right: 0.5rem;
}

/* Responsive Map */
.iframe iframe {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

    .iframe iframe:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* Media Queries */
@media (max-width: 992px) {
    .info {
        max-width: 100%;
    }

    h2 {
        font-size: 2rem;
    }
}
