/* Admin Styles for BuildWithGuru Plugin */

/* Body styles for the admin page */
#buildwithguru-admin-container {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 30px auto;
    font-family: 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease-in-out;
}

#buildwithguru-admin-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Header section in admin */
#buildwithguru-admin-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Styling form inputs and buttons */
#buildwithguru-admin-container input[type="text"],
#buildwithguru-admin-container select,
#buildwithguru-admin-container textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

#buildwithguru-admin-container input[type="text"]:focus,
#buildwithguru-admin-container select:focus,
#buildwithguru-admin-container textarea:focus {
    border-color: #0073e6;
    outline: none;
}

/* Button Styling */
#buildwithguru-admin-container button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#buildwithguru-admin-container button:hover {
    background-color: #005bb5;
}

/* Hover Effects for List Items or Blocks */
#buildwithguru-admin-container .admin-item {
    border-radius: 8px;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease, transform 0.2s ease-in-out;
}

#buildwithguru-admin-container .admin-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Clean Border for Fields */
#buildwithguru-admin-container .admin-item input,
#buildwithguru-admin-container .admin-item select {
    border: none;
}
/* Frontend Sticky Header Styles */
.sticky-header {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 0px 0;
}

/* Header on Scroll - Adding more subtle effect */
.sticky-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

/* Frontend Sticky Footer Styles */
.sticky-footer {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 0px 0;
}

/* Footer on Scroll */
.sticky-footer.scrolled {
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

/* Smooth Transitions for Header & Footer */
.sticky-header,
.sticky-footer {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Styling Links in Sticky Header and Footer */
.sticky-header a,
.sticky-footer a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sticky-header a:hover,
.sticky-footer a:hover {
    color: #0073e6;
}

/* Responsive Design for Sticky Elements */
@media (max-width: 768px) {
    .sticky-header,
    .sticky-footer {
        padding: 15px 0;
    }
    
    .sticky-header a,
    .sticky-footer a {
        font-size: 0.9rem;
    }
}
.guru-builder-slideshow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guru-slide {
    display: none;
}

.guru-slide.active {
    display: block;
}

