/* Global Styles */
:root {
    --primary-color: #F07167;
    --secondary-color: #0081A7;
    --background-color: #FDFCDC;
    --box-background-color: #FFFDF2;
    --box-border-color: #00AFB9;
    --hover-color: #FF8C89;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--secondary-color);
    transition: background-color 0.5s, color 0.5s;
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s, box-shadow 0.5s;
}

.header-center h1 {
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .logo {
    width: 50px;
    margin-left: 10px;
}

.header-right .header-icon {
    margin-left: 15px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.header-right .header-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Sidebar Styles */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar a,
.sidebar .login-btn {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: background-color 0.3s, padding 0.3s;
}

.sidebar a:hover,
.sidebar .login-btn:hover {
    background-color: var(--hover-color);
    color: var(--secondary-color);
    padding-left: 25px;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Main Content Styles */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Settings Container */
.settings-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Settings Boxes Wrapper */
.settings-boxes-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

/* Settings Box Styles */
.settings-box {
    background-color: var(--box-background-color);
    border: 1px solid var(--box-border-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.settings-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15%;
}

form .color-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

form label {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

form input[type="color"] {
    width: 50px;
    height: 30px;
    border: none;
    cursor: pointer;
}





.save-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.save-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    .header-right {
        justify-content: center;
    }
    .settings-boxes-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .settings-box {
        width: 90%;
    }
}

/* Customize the tooltip appearance */
.introjs-tooltip {
    background-color: #F07167; /* Background color */
    color: #ffffff; /* Text color */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow */
}

/* Customize the tooltip text */
.introjs-tooltiptext {
    font-size: 16px; /* Font size */
    line-height: 1.5; /* Line height */
}

/* Customize the buttons */
.introjs-button {
    background-color: #00AFB9; /* Button background color */
    color: #ffffff; /* Button text color */
    border: none; /* Remove border */
    border-radius: 3px; /* Rounded corners */
    padding: 5px 10px; /* Padding */
}

/* Highlighted elements */
.introjs-highlight {
    box-shadow: 0 0 10px rgba(0, 175, 185, 0.5); /* Custom shadow for highlighted elements */
    border-radius: 5px; /* Rounded corners */
}

/* Tooltip arrow customization */
.introjs-arrow {
    border-top-color: #F07167; /* Arrow color */
}
/* Make sure highlighted elements are visible and above other content */
.introjs-showElement {
    z-index: 9999; /* Bring the element to the front */
    position: relative;
}

/* Adjust the z-index of the tooltip if necessary */
.introjs-tooltipReferenceLayer {
    z-index: 9999;
}


