
/* Retro Dating App styles */
:root {
    --myspaceblue: #0099cc;
    --myspacegray: #e5e5e5;
    --myspacedark: #333333;
}

body {
    background-color: var(--myspacegray);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/* Dating-specific elements */
.bg-pink-500 {
    background-color: #ff4081;
}

.bg-pink-600 {
    background-color: #e91e63;
}

.bg-purple-500 {
    background-color: #9c27b0;
}

.bg-purple-600 {
    background-color: #7b1fa2;
}

.heart-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* Blinking cursor animation for status */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.myspace-cursor {
    animation: blink 1s infinite;
}

/* Custom scrollbar for that retro feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0099cc;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0077aa;
}

/* Retro button styles */
.retro-button {
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
    border: 1px solid #0077aa;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}

.retro-button:hover {
    background: linear-gradient(to bottom, #3e9bf4 0%, #00d8e6 100%);
}
/* Auth styles */
#auth-banner {
    transition: all 0.3s ease;
}

.auth-form input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Filter styles */
.filter-section {
    transition: all 0.3s ease;
}

.filter-section select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em;
}

.filter-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* Retro input styles */
.retro-input {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.retro-input:focus {
    border-color: #0099cc;
    outline: none;
}