html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.card {
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-title {
    font-size: 1.35rem;
}

.card-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.btn {
    padding: 12px 18px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-outline-primary {
    border-width: 2px;
}

@media (hover: none) {
    .card:hover {
        transform: none;
    }
}

/* Store Cards - Multiple Background Colors */
.store-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: white;
}

    /* Different background colors for variety */
    .store-card:nth-child(1) {
        background: linear-gradient(135deg, #17a2b8, #0d6efd); /* Teal to Blue */
    }

    .store-card:nth-child(2) {
        background: linear-gradient(135deg, #28a745, #20c997); /* Green to Cyan */
    }

    .store-card:nth-child(3) {
        background: linear-gradient(135deg, #ffc107, #fd7e14); /* Yellow to Orange */
    }

    .store-card:nth-child(4) {
        background: linear-gradient(135deg, #6610f2, #6f42c1); /* Purple to Light Purple */
    }

    /* Hover Effect */
    .store-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

/* Centered Icon Styling */
.icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 20px;
    display: inline-block;
    color: white; /* Keep the icon color white for contrast */
}

/* Card Text Styling */
.store-card .card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white; /* White for clear contrast */
}

.store-card .card-text {
    font-size: 1.1rem;
    color: #f8f9fa; /* Light gray to add more contrast against the background */
}

/* Card Hover Effect */
.clickable-card {
    cursor: pointer;
}

    .clickable-card:hover {
        transform: translateY(-8px);
    }

/* Make the entire card clickable */
a.text-decoration-none {
    text-decoration: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .store-card .card-title {
        font-size: 1.2rem;
    }

    .store-card .card-text {
        font-size: 1rem;
    }
}


/*Store Details */
/* General Card Styling */
.store-details-card, .manager-card, .employee-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #f8f9fa;
}

    .store-details-card:hover, .manager-card:hover, .employee-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Title Styling */
    .store-details-card .card-title,
    .manager-card .card-title,
    .employee-card .card-title {
        font-size: 1.6rem;
        font-weight: 600;
        color: #343a40;
    }

/* Button Styling */
.btn-lg {
    padding: 10px 30px;
    border-radius: 30px;
}

.btn-outline-secondary {
    border-radius: 20px;
}

/* List Styling */
.list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .store-details-card, .manager-card, .employee-card {
        margin-bottom: 1rem;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
}


/* General Card Styling */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

/* Button Styling */
.btn {
    border-radius: 30px;
    padding: 8px 20px;
    transition: background-color 0.3s;
}

    .btn:hover {
        opacity: 0.85;
    }

.btn-sm {
    padding: 5px 10px;
}

/* Header Styles */
.card-header {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Section Headings */
.store-details-card .card-title,
.manager-card .card-title,
.employee-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.list-group-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Add Hover Effect for the Cards */
.card-body {
    padding: 1.5rem;
}

    .card-body i {
        margin-right: 10px;
        /*color: #555;*/
    }

/* Background Colors for Headers */
.bg-primary {
    background-color: #0d6efd !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

/* Text Centering */
.text-center {
    text-align: center;
}

/* Custom Responsive Design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
}


.footer {
    position: relative !important;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}