.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.sacred-symbol-notification {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease;
}

.notification-success {
    border-right: 4px solid #28a745;
}

.notification-error {
    border-right: 4px solid #dc3545;
}

.notification-warning {
    border-right: 4px solid #ffc107;
}

.notification-info {
    border-right: 4px solid #17a2b8;
}

.notification-icon {
    margin-left: 10px;
    font-size: 1.2em;
}

.notification-message {
    flex: 1;
    margin: 0 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #999;
}

.notification-close:hover {
    color: #333;
}

.symbol-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
}

.symbol-modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.symbol-modal-content.loading {
    padding: 40px;
    text-align: center;
    max-width: 300px;
}

.symbol-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.symbol-modal-close {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #999;
}

.symbol-modal-body {
    padding: 20px;
}

.rating-stars .star {
    cursor: pointer;
    font-size: 1.5em;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.rating-stars .star:hover,
.rating-stars .star.selected {
    color: #ffc107;
    transform: scale(1.1);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.calc-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.calc-label {
    font-weight: bold;
    color: #666;
}

.calc-value {
    color: #333;
    font-weight: bold;
}

.interpretation-section,
.daily-recommendation {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.interpretation-text {
    line-height: 1.8;
    color: #333;
}

.recommendation-text {
    font-size: 1.1em;
    font-weight: bold;
    color: #667eea;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.symbol-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.symbol-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.share-symbol-btn {
    background: #17a2b8;
    color: white;
}

.save-symbol-btn {
    background: #28a745;
    color: white;
}

.symbol-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .notifications-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .symbol-modal-content {
        margin: 20px;
        max-width: none;
        max-height: calc(100vh - 40px);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .symbol-actions {
        flex-direction: column;
    }
}


