@charset "UTF-8";

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --background-light: #232131;
    --background-white: #ffffff;
    --text-primary: #6254fe;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.new-button-primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid #6366f1 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #6366f1;
}

.new-button-primary:hover {
    box-shadow: 0 3px 15px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.3) 100%);
    color: #6366f1;
}

.new-button-secondary {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.2) 100%);
    border: 1px solid #6b7280 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.new-button-secondary:hover {
    box-shadow: 0 3px 15px rgba(107, 114, 128, 0.3);
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(107, 114, 128, 0.3) 100%);
    color: #6b7280;
}

.new-button-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    border: 1px solid #ef4444 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #ef4444;
    transition: all 0.3s ease;
}
.new-button-red:hover {
    box-shadow: 0 3px 15px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.3) 100%);
    color: #ef4444;
}

.new-button-yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.2) 100%);
    border: 1px solid #eab308 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #eab308;
    transition: all 0.3s ease;
}
.new-button-yellow:hover {
    box-shadow: 0 3px 15px rgba(234, 179, 8, 0.3);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.3) 100%);
    color: #eab308;
}

.new-button-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.2) 100%);
    border: 1px solid #f97316 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #f97316;
    transition: all 0.3s ease;
}
.new-button-orange:hover {
    box-shadow: 0 3px 15px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.3) 100%);
    color: #f97316;
}

.new-button-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    border: 1px solid #22c55e !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #22c55e;
    transition: all 0.3s ease;
}
.new-button-green:hover {
    box-shadow: 0 3px 15px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.3) 100%);
    color: #22c55e;
}

.new-button-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.2) 100%);
    border: 1px solid #14b8a6 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #14b8a6;
    transition: all 0.3s ease;
}
.new-button-teal:hover {
    box-shadow: 0 3px 15px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.3) 100%);
    color: #14b8a6;
}
