/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Secret Cards */
.secret-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff9c4; /* Sticky note yellow */
    border: none;
    border-radius: 8px;
}

.secret-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.secret-content {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal */
.modal-content {
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .secret-card {
        margin-bottom: 15px;
    }
}

/* Custom sticky note colors */
.secret-card:nth-child(6n+1) { background-color: #fff9c4; }
.secret-card:nth-child(6n+2) { background-color: #e1f5fe; }
.secret-card:nth-child(6n+3) { background-color: #f1f8e9; }
.secret-card:nth-child(6n+4) { background-color: #ffebee; }
.secret-card:nth-child(6n+5) { background-color: #f3e5f5; }
.secret-card:nth-child(6n+6) { background-color: #e8f5e9; }