    @import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css');
    /* Custom styles */    
    #stellarJournalModal{
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
            
    }
    
    .stellar-btn {
        background: linear-gradient(to right, #8b5cf6, #4338ca);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .stellar-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }
    
    .stellar-modal .modal-content {
        background: var(--header);
        border: 1px solid rgba(139, 92, 246, 0.3);
        color: white;
        border-radius: 12px;
    }
    
    .stellar-modal .modal-header {
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }
    
    .stellar-modal .modal-footer {
        border-top: 1px solid rgba(139, 92, 246, 0.3);
    }
    
    .stellar-modal .btn-close {
        color: white;
        filter: invert(1) grayscale(100%) brightness(200%);
    }
    
    .journal-prompt {
        background: rgba(50, 34, 230, 0.4);
        border-radius: 8px;
        padding: 15px;
    }
    
    .cosmic-title {
        color: #c4b5fd;
    }
    
    .star-icon {
        color: #c4b5fd;
    }
    
    .entries-list {
        max-height: 200px;
        overflow-y: auto;
        margin-top: 15px;
    }
    
    .entry-item {
        background: rgba(67, 56, 202, 0.2);
        border-radius: 6px;
        padding: 10px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .entry-item:hover {
        background: rgba(67, 56, 202, 0.3);
    }
    
    .entry-date {
        font-size: 0.8rem;
        opacity: 0.7;
    }
    
    .entry-preview {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding-top: 15px;
    }
    
    .nav-tabs .nav-link {
        color: #ffffff;
        border: none;
    }
    .nav-tabs .nav-link:hover{
        color: #ffffff;
    }
    .nav-tabs .nav-link.active {
        background-color: transparent;
        border-bottom: none ;
        color:white;
    }
    
    .save-success {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(5, 150, 105, 0.9);
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 100000000;
    }
    .save-entry{
        width: 100px;
        height: 50px;
        background: linear-gradient(135deg, #0f172a, #312e81);
        border: 1px solid rgba(139, 92, 246, 0.3);
        color: white;
        border-radius: 12px;
    }
    /** tracking mood*/
    
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.5); */
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        align-items: center;
        justify-content: center;
        z-index: 100;
    }
    
    .modal-content-container {
        background-color: #4338ca;
        padding: 30px;
        border-radius: 15px;
        max-width: 500px;
        width: 80%;
        text-align: center;
        position: relative;
    }
    
    .close-button {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
        color: white;
    }
    
    .modal-emoji {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .modal-message {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .modal-tip {
        font-size: 16px;
        font-style: italic;
        color: #a8b6cc;
    }
