/* Sincerely Fuck You App - Complete WordPress Plugin Styles */

/* Base styles and utilities */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Card styles */
.card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Form elements */
.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
}

.input-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-field::placeholder {
    color: #9ca3af;
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(239, 68, 68, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Tag buttons */
.tag-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-block;
    margin: 0.25rem;
}

.tag-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-btn:active {
    transform: translateY(0);
}

/* Specific tag colors */
.tag-btn[data-tag="Boss"] {
    background-color: #fee2e2;
    color: #b91c1c;
}

.tag-btn[data-tag="Coworker"] {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.tag-btn[data-tag="Meeting"] {
    background-color: #dcfce7;
    color: #15803d;
}

.tag-btn[data-tag="Email"] {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.tag-btn[data-tag="Micromanager"] {
    background-color: #fed7aa;
    color: #ea580c;
}

.tag-btn[data-tag="HR"] {
    background-color: #fce7f3;
    color: #be185d;
}

.tag-btn[data-tag="Client"] {
    background-color: #e0e7ff;
    color: #4338ca;
}

.tag-btn[data-tag="Deadline"] {
    background-color: #fef3c7;
    color: #a16207;
}

.tag-btn[data-tag="Kudos"] {
    background-color: #fef3c7;
    color: #d97706;
}

/* Selected tags display */
#sfya-selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

#sfya-selected-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#sfya-selected-tags button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.125rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

#sfya-selected-tags button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Message slider */
#sfya-message-slider {
    width: 100%;
}

#sfya-slider-track {
    position: relative;
    width: 100%;
    height: 4rem;
    background-color: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

#sfya-slider-track:hover {
    background-color: #d1d5db;
}

#sfya-slider-track.cursor-grabbing {
    cursor: grabbing;
}

#sfya-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
    transition: width 0.2s ease;
    width: 0%;
}

#sfya-slider-handle {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: all 0.2s ease;
    z-index: 10;
}

#sfya-slider-handle:hover {
    transform: scale(1.05);
}

#sfya-slider-handle:active {
    cursor: grabbing;
}

#sfya-slider-handle.scale-110 {
    transform: scale(1.1);
}

#sfya-slider-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    color: #4b5563;
}

#sfya-slider-status {
    margin-top: 0.75rem;
    text-align: center;
}

#sfya-slider-status.hidden {
    display: none;
}

/* Search and filter section */
#sfya-search-input {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafb;
}

#sfya-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    background-color: white;
}

#sfya-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#sfya-filter-toggle:hover {
    background-color: #e5e7eb;
}

#sfya-clear-filters {
    display: none;
}

#sfya-clear-filters:not(.hidden) {
    display: block;
}

#sfya-clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: #fee2e2;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #b91c1c;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#sfya-clear-filters-btn:hover {
    background-color: #fecaca;
}

#sfya-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#sfya-active-filters.hidden {
    display: none;
}

#sfya-active-filters span {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

#sfya-active-filters span:first-child {
    background-color: #dbeafe;
    color: #1d4ed8;
}

#sfya-active-filters span:not(:first-child) {
    background-color: #dcfce7;
    color: #15803d;
}

#sfya-filter-dropdown {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#sfya-filter-dropdown.hidden {
    display: none;
}

#sfya-filter-dropdown h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.75rem;
}

#sfya-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background-color: #f3f4f6;
    color: #4b5563;
    border: none;
    cursor: pointer;
}

.filter-tag-btn:hover {
    background-color: #e5e7eb;
}

.filter-tag-btn.ring-2 {
    background-color: #dbeafe;
    color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Filter tabs */
.sfya-filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.sfya-filter-tab.active {
    background-color: #dbeafe;
    color: #1d4ed8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sfya-filter-tab:not(.active) {
    background-color: #f3f4f6;
    color: #4b5563;
}

.sfya-filter-tab:not(.active):hover {
    background-color: #dbeafe;
    color: #1d4ed8;
}

/* Message cards */
.message-card {
    position: relative;
    margin-bottom: 1.5rem;
}

.employee-of-month {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Kudos button states */
.kudos-button {
    transition: all 0.2s ease;
}

.kudos-button.bg-red-100 {
    background-color: #fee2e2;
    color: #b91c1c;
    border-color: #fca5a5;
}

.kudos-button.bg-red-100:hover {
    background-color: #fecaca;
}

/* Reply sections */
.reply-input {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.reply-input.hidden {
    display: none;
}

.reply-input textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
    color: #1f2937;
    resize: none;
}

.reply-input textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.reply-input .button-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.reply-input .cancel-btn {
    padding: 0.25rem 0.75rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.reply-input .cancel-btn:hover {
    color: #374151;
}

.reply-input .reply-btn {
    padding: 0.25rem 1rem;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reply-input .reply-btn:hover {
    background-color: #dc2626;
}

.reply-input .reply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Replies display */
.replies-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.replies-section.hidden {
    display: none;
}

.reply-item {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border-left: 4px solid #fca5a5;
    margin-bottom: 0.75rem;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.reply-text {
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.reply-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reply-author {
    font-size: 0.75rem;
    color: #6b7280;
}

.reply-timestamp {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Notifications */
.sfya-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
}

.sfya-success {
    background-color: #10b981;
}

.sfya-error {
    background-color: #ef4444;
}

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

/* Animations */
.animate-fade-in-scale {
    animation: fadeInScale 0.6s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .tag-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    #sfya-slider-track {
        height: 3.5rem;
    }
    
    #sfya-slider-handle {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .sfya-filter-tab {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.space-x-1 > * + * {
    margin-left: 0.25rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-auto {
    margin-left: auto;
}

.p-1 {
    padding: 0.25rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pl-10 {
    padding-left: 2.5rem;
}

.pr-4 {
    padding-right: 1rem;
}

.w-full {
    width: 100%;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-16 {
    height: 4rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-\[120px\] {
    min-height: 7.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-white {
    color: white;
}

.bg-white {
    background-color: white;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-300 {
    background-color: #d1d5db;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-600 {
    background-color: #dc2626;
}

.bg-red-700 {
    background-color: #b91c1c;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-green-700 {
    background-color: #15803d;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

.bg-yellow-50 {
    background-color: #fffbeb;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-yellow-400 {
    background-color: #fbbf24;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-orange-100 {
    background-color: #fed7aa;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-pink-100 {
    background-color: #fce7f3;
}

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

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.bg-amber-100 {
    background-color: #fef3c7;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-red-300 {
    border-color: #fca5a5;
}

.border-yellow-400 {
    border-color: #fbbf24;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-t {
    border-top-width: 1px;
}

.border-t-gray-200 {
    border-top-color: #e5e7eb;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ring-2 {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.ring-blue-300 {
    --tw-ring-color: #93c5fd;
}

.transition-all {
    transition-property: all;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.transition-transform {
    transition-property: transform;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transform {
    transform: translateZ(0);
}

.hover\:bg-gray-200:hover {
    background-color: #e5e7eb;
}

.hover\:bg-gray-300:hover {
    background-color: #d1d5db;
}

.hover\:bg-blue-50:hover {
    background-color: #eff6ff;
}

.hover\:bg-blue-200:hover {
    background-color: #bfdbfe;
}

.hover\:bg-green-200:hover {
    background-color: #bbf7d0;
}

.hover\:bg-red-200:hover {
    background-color: #fecaca;
}

.hover\:text-blue-600:hover {
    color: #2563eb;
}

.hover\:text-gray-700:hover {
    color: #374151;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:translate-y-\[-1px\]:hover {
    transform: translateY(-1px);
}

.hover\:translate-y-\[-2px\]:hover {
    transform: translateY(-2px);
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.focus\:ring-blue-500:focus {
    --tw-ring-color: #3b82f6;
}

.focus\:ring-red-500:focus {
    --tw-ring-color: #ef4444;
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

.focus\:border-blue-500:focus {
    border-color: #3b82f6;
}

.focus\:border-red-500:focus {
    border-color: #ef4444;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.active\:cursor-grabbing:active {
    cursor: grabbing;
}

.active\:scale-110:active {
    transform: scale(1.1);
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing;
}

.pointer-events-none {
    pointer-events: none;
}

.resize-none {
    resize: none;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-2 {
    top: 0.5rem;
}

.top-3 {
    top: 0.75rem;
}

.left-3 {
    left: 0.75rem;
}

.left-4 {
    left: 1rem;
}

.right-4 {
    right: 1rem;
}

.-top-3 {
    top: -0.75rem;
}

.z-10 {
    z-index: 10;
}

.z-1000 {
    z-index: 1000;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-red-500 {
    --tw-gradient-from: #ef4444;
    --tw-gradient-to: rgb(239 68 68 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-pink-600 {
    --tw-gradient-to: #db2777;
}

.from-yellow-400 {
    --tw-gradient-from: #fbbf24;
    --tw-gradient-to: rgb(251 191 36 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-orange-500 {
    --tw-gradient-to: #f97316;
}

.from-green-400 {
    --tw-gradient-from: #4ade80;
    --tw-gradient-to: rgb(74 222 128 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6;
}

.from-667eea {
    --tw-gradient-from: #667eea;
    --tw-gradient-to: rgb(102 126 234 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-764ba2 {
    --tw-gradient-to: #764ba2;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-80 {
    opacity: 0.8;
}

.transition-opacity {
    transition-property: opacity;
}

.transition-opacity.duration-300 {
    transition-duration: 300ms;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive utilities */
@media (max-width: 640px) {
    .sm\:text-lg {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:max-w-2xl {
        max-width: 42rem;
    }
}
