/* 
    Created on : Jul 25, 2024, 6:49:05 AM
    Author     : Florin Pinta alias xttrust
*/

/* ------------------------------------------------- */
/* General Styles */
/* ------------------------------------------------- */

/* Form Styles */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label a {
    color: #0d6efd;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-small {
    padding: 10px;
}

.btn-close-white {
    filter: invert(1);
}

.btn-upload-container {
    margin-top: -50px;
    padding: 10px;
}


.btn-profile {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    transition: .5s;
}

.btn-upload {
    padding: 5px 10px;
}

.btn-profile:hover {
    color: #fff;
    background-color: rgba(21, 6, 20, 1);
    transition: background-color .5s ease-in-out;
}

.btn-modal {
    background-color: #212529 !important;
    border: 0 !important;
}

.btn-modal:hover {
    color: #999999 !important;
    background-color: #150613 !important;
}

/* ------------------------------------------------- */
/* Profile Styles */
/* ------------------------------------------------- */

.profile-top-spacer {
    display: block;
    height: 7rem;
}

.profile-header {
    display: block;
}

/* Dashboard Avatar */
.dashboard-avatar {
    margin-top: -170px;
    margin-bottom: 30px;
}

.dashboard-avatar img {
    margin-left: 20px;
    width: 150px;
    height: 150px;
}

.header-image {
    max-height: 600px;
}

/* ------------------------------------------------- */
/* Modal Styles */
/* ------------------------------------------------- */

.modal-body label { 
    color: #000000 !important; 
} 

.modal-body, 
.modal-body p, 
.modal-body h1, 
.modal-body h2, 
.modal-body h3, 
.modal-body h4, 
.modal-body h5, 
.modal-body h6, 
.modal-body span {
    padding-left: 10px;
    background-color: white !important;
    color: #000000 !important; 
}

.modal-body a {
    color: #000000 !important;
} 

.modal-header {
    background-color: #212529 !important;
}

/* ------------------------------------------------- */
/* Alert Styles */
/* ------------------------------------------------- */

.alert {
    opacity: 1;
    transition: opacity 1s ease-out;
}

.alert.fade-out {
    opacity: 0;
}

/* ------------------------------------------------- */
/* Card Styles */
/* ------------------------------------------------- */

/* Card Container */
.card {
    background-color: #1c1c1e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Card Header */
.card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Card Price */
.card-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Card Body */
.card-body {
    padding: 30px;
}

.card-body ul {
    list-style: none;
    padding: 0;
}

.card-body li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body li:last-child {
    border-bottom: none;
}

/* Card Footer */
.card-footer {
    padding: 20px;
    background-color: #2c2c2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Header Colors for Different Plans */
.card-header.bg-dark {
    background-color: #2b2b2d;
}

.card-header.bg-primary {
    background-color: #3a3f55;
}

.card-header.bg-success {
    background-color: #4a5b3d;
}

/* ------------------------------------------------- */
/* Tabs Styles */
/* ------------------------------------------------- */

/* Container for the tabbed menu */
/* Container for the tabbed menu */
.nav-pills {
    background-color: #f8f9fa; /* Light background color for the entire menu */
    border-radius: 0.5rem;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for each tab link */
.nav-pills .nav-link {
    color: #6c757d; /* Default text color */
    background-color: #fff; /* Background color for inactive tabs */
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 0.25rem;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid #ddd; /* Add a subtle border */
}

/* Active tab link */
.nav-pills .nav-link.active {
    background-color: #8115ff; /* Background color for the active tab */
    color: #000; /* Active text color */
    border-color: #8115ff;
}

/* Hover effect for tabs */
.nav-pills .nav-link:hover {
    background-color: rgba(129,21,255,0.1); /* Light purple on hover */
    color: #8115ff; /* Text color on hover */
    border-color: #8115ff;
}

/* Custom margin for the last tab */
.nav-pills .nav-item:last-child .nav-link {
    margin-bottom: 0;
}

/* Adjust the text alignment */
.nav-pills .nav-link {
    text-align: center; /* Center the text */
    font-weight: 500;
}

/* Customize the font size */
.nav-pills .nav-link {
    font-size: 1rem; /* Adjust font size if needed */
}

/* Container for the tab content */
.tab-content {
    background-color: #fff; /* Background color for the tab content area */
    padding: 30px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header for each tab content */
.h3-elegant {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8115ff; /* Custom color for tab headers */
    margin-bottom: 20px;
}

/* Form label styling */
.form-label {
    font-weight: 500;
    color: #6c757d; /* Subtle gray color for labels */
}

/* Form control styling */
.form-control {
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    padding: 10px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #8115ff; /* Border color on focus */
    box-shadow: 0 0 0 0.2rem rgba(129, 21, 255, 0.25); /* Purple focus shadow */
}

/* Button styling */
.btn-gradient {
    background: linear-gradient(90deg, #8115ff, #d145ff); /* Gradient background */
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: 10px 20px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #d145ff, #8115ff); /* Reverse gradient on hover */
    color: #fff;
}

/* Form check (checkboxes) styling */
.form-check-input {
    border-radius: 0.25rem;
    border-color: #ddd;
}

.form-check-input:checked {
    background-color: #8115ff; /* Purple checkbox when checked */
    border-color: #8115ff;
}

.form-check-label {
    color: #6c757d; /* Subtle gray color for check labels */
    font-weight: 500;
}

/* Spacing adjustments */
.form-check {
    border-radius: 0.5rem;
    background-color: #f8f9fa; /* Light background for checkboxes */
    border: 1px solid #ddd;
}

.p-3 {
    padding: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.sk__mobile-main-logo {
        margin-top: 25px;
    }
    
    
/* Accordion Header Styles */
.accordion-header {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    font-weight: bold;
    color: #343a40;
    background-color: #e9ecef;
    padding: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #8115ff;
    color: #fff;
}

.accordion-button:hover {
    background-color: #343a40;
    color: #ffffff;
}

/* Accordion Body Styles */
.accordion-body {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #dee2e6;
    font-size: 0.95rem;
    color: #343a40;
}

.accordion-body p {
    color: #000000;
}

/* Accordion Item Styles */
.accordion-item {
    margin-bottom: 10px;
    border: none;
}

/* Custom Hover Effect */
.accordion-button:hover {
    background-color: #8115ff;
    color: #fff;
}

/* Active/Focused State */
.accordion-button:focus {
    box-shadow: none;
}

/* Accordion Icon Customization */
.accordion-button::after {
    color: #8115ff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


/* ------------------------------------------------- */
/* Media Queries */
/* ------------------------------------------------- */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    /* Add specific styles for small devices if needed */
    .btn-email {
        display: inline-block; 
        vertical-align: middle; 
        padding-top: 17px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .dashboard-avatar {
        margin-top: -90px;
    }
    
    .dashboard-avatar img {
        margin-left: 20px;
        width: 75px;
        height: 75px;
    }
    
    /* Profile Avatar */
    .profile-avatar-container {
        display: flex;
        justify-content: center;
        align-items: center; 
        margin-top: -140px; 
        height: 120px;
    }

    .profile-avatar-image {
        width: 100px;
        height: 100px;
    }
    
    .sk__mobile-main-logo {
        margin-top: 25px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    /* Add specific styles for large devices if needed */
    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
    /* Add specific styles for extra large devices if needed */
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
    /* Add specific styles for extra extra large devices if needed */
    .sk__mobile-main-logo {
        margin-top: 15px;
    }
}