/* Variables */
:root {
    --primary-color: #FF5470;
    --secondary-color: #49C5B6;
    --tertiary-color: #9B51E0;
    --info-color: #2196F3;
    --light-color: #f8f9fa;
    --dark-color: #343A40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --text-color: #333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    color: var(--text-color);
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 84, 112, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(73, 197, 182, 0.1) 0%, transparent 50%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

button, input[type="submit"] {
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
}

/* Fix for mobile overflow issues */
.pockets-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-secondary, .btn-primary {
    white-space: normal;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .pockets-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .pockets-actions button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-secondary, .btn-primary {
        padding: 0.75rem;
    }
}

/* Main CSS Variables and General Styles */
:root {
    --primary-color: #ff5470;
    --secondary-color: #49C5B6;
    --tertiary-color: #9B51E0;
    --dark-color: #343A40;
    --text-color: #333;
    --border-color: #e0e0e0;
    --light-color: #f8f9fa;
    --info-color: #2196F3;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease-in-out;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 84, 112, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(73, 197, 182, 0.1) 0%, transparent 50%);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
}

/* Fix for mobile overflow issues */
.pockets-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-secondary, .btn-primary {
    white-space: normal;
    text-align: center;
}

@media (max-width: 480px) {
    .pockets-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .pockets-actions button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Basic button.danger styling, detailed styling in forms.css */
button.danger {
    background-color: var(--danger-color);
} 