/**
 * Hide the Settings Top Bar and Push Content Up
 * Removes the green gradient header to give more space for settings content
 */

/* Hide the settings top bar completely */
.tk-area-settings .tk-top-bar {
    display: none !important;
}

/* Alternative: Just make it much smaller/minimal */
.tk-area-settings .tk-top-bar.minimal {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Push the settings content up to fill the space */
.tk-area-settings > .tk-tab {
    margin-top: 0 !important;
    padding-top: 20px;
}

/* Adjust the settings navigation and content to start from top */
.tk-area-settings {
    padding-top: 0 !important;
}

/* Floating save button - only visible in settings */
body:has(#tk-settings.tk-active) .tk-floating-save,
.tk-area-settings.tk-active ~ .tk-floating-save {
    display: flex !important;
}

/* Hide floating save on all other pages */
body:not(:has(#tk-settings.tk-active)) .tk-floating-save {
    display: none !important;
}

.tk-floating-save {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
    align-items: center;
    gap: 10px;
}

.tk-floating-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Move search functionality to settings sidebar if needed */
.tk-area-settings > .tk-tab > .tk-nav::before {
    content: '';
    display: block;
    padding: 15px;
}

.tk-area-settings .tk-nav-search {
    padding: 10px 15px;
    margin-bottom: 15px;
}

.tk-area-settings .tk-nav-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tk-floating-save {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}