body {
    background-color: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Mac OSX Aqua Button Style */
.btn-aqua {
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    border: 1px solid #b3b3b3;
    border-radius: 6px;
    color: #333;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-aqua:hover {
    background: linear-gradient(180deg, #f0f0f0 0%, #d0d0d0 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-aqua:active {
    background: #d0d0d0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 0;
}

/* Search Box */
.search-box-container {
    position: relative;
}

.search-input {
    border-radius: 20px;
    padding-left: 35px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    background-color: #fff;
    height: 44px;
}

.search-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25), inset 0 1px 3px rgba(0,0,0,0.06);
    border-color: #86b7fe;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Cards */
.prompt-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    overflow: hidden;
    margin-bottom: 20px;
}

.prompt-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.prompt-header {
    padding: 15px 20px;
    cursor: pointer;
    background: linear-gradient(180deg, #fbfbfb 0%, #f0f0f0 100%);
    border-bottom: 1px solid transparent;
    user-select: none;
}

.prompt-card.expanded .prompt-header {
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
}

.prompt-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.prompt-label {
    font-size: 0.85rem;
    color: #666;
    background: #e5e5ea;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.prompt-body {
    display: none;
    padding: 20px;
    background-color: #fff;
}

.prompt-content {
    white-space: pre-wrap;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 0.9rem;
    color: #444;
    max-height: 300px;
    overflow-y: auto;
    cursor: pointer;
    padding: 12px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.prompt-content:hover {
    background-color: #f0f0f0;
}

.prompt-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

/* Modals & Login Card */
.aqua-modal {
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
}

.aqua-modal .modal-header {
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    border-bottom: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
}
