/**
 * Navigation Button Styles
 *
 * Styles for the "Start Creating" button in the main navigation.
 * Designed to be prominent but not overwhelming, matching the app's design system.
 */

/* Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-right: 24px;
}

/* Navigation Create Button */
.btn-nav-create {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--primary-color, #D94A1F);
    color: white;
    box-shadow: 0 2px 8px rgba(217, 74, 31, 0.2);
    transition: all 0.3s ease;
}

.btn-nav-create:hover {
    transform: translateY(-2px);
    background: #B83D19;
    box-shadow: 0 4px 12px rgba(217, 74, 31, 0.3);
}

.btn-nav-create:active {
    transform: translateY(0);
}

.btn-nav-create .btn-icon {
    font-size: 18px;
    line-height: 1;
    color: white;
}

.btn-nav-create .btn-text {
    line-height: 1;
    color: white;
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .nav-actions {
        margin-right: 16px;
    }

    .btn-nav-create {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Hide text on very small screens, show only icon */
    .btn-nav-create .btn-text {
        display: none;
    }

    .btn-nav-create .btn-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        margin-right: 8px;
    }

    .btn-nav-create {
        padding: 8px 12px;
    }
}

/* Dashboard Navigation Container Adjustment */
.dashboard-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Ensure user menu stays on the right */
.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    margin-left: 0;
}
