
/* Animation styles */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Play button animation */
.play-button:hover {
    transform: scale(1.1);
}

/* Custom shadow */
.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Shared styles */
/* Admin Dashboard Additions */
.datetime-picker {
    color-scheme: dark;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #06b6d4;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #06b6d4;
    border-radius: 50%;
    cursor: pointer;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-card-inner {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: white;
    outline: none;
    transition: all 0.2s;
}
.glass-input:focus {
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Social Attestation Styles */
.tab-button {
    transition: all 0.2s;
}
.tab-button.active {
    color: #2563eb;
}
.attest-button {
    transition: all 0.2s;
}
.revoke-button {
    transition: all 0.2s;
}
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
}
/* Election Explorer Styles */
.badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Voting Phase Colors */
.bg-amber-50 {
    background-color: #fffbeb;
}

/* Jury Vetting Colors */
.bg-indigo-50 {
    background-color: #eef2ff;
}
.text-purple-800 {
    color: #5b21b6;
}
.border-purple-600 {
    border-color: #9333ea;
}
.bg-purple-600 {
    background-color: #9333ea;
}
.hover\:bg-purple-700:hover {
    background-color: #7e22ce;
}
.bg-purple-50 {
    background-color: #f5f3ff;
}
.border-purple-100 {
    border-color: #e9d5ff;
}
.bg-purple-800 {
    background-color: #5b21b6;
}
.text-purple-200 {
    color: #c4b5fd;
}
.border-orange-100 {
    border-color: #ffedd5;
}

/* Lottery voting colors */
.bg-emerald-50 {
    background-color: #ecfdf5;
}
.text-emerald-800 {
    color: #065f46;
}
.text-emerald-900 {
    color: #064e3b;
}
.bg-emerald-700 {
    background-color: #047857;
}
.bg-emerald-800 {
    background-color: #065f46;
}
.bg-emerald-900 {
    background-color: #064e3b;
}
.bg-yellow-100 {
    background-color: #fef9c3;
}
.bg-yellow-200 {
    background-color: #fef08a;
}
.border-yellow-300 {
    border-color: #fde047;
}
.bg-yellow-400 {
    background-color: #facc15;
}
.bg-yellow-500 {
    background-color: #eab308;
}
.bg-yellow-600 {
    background-color: #ca8a04;
}
.text-yellow-500 {
    color: #eab308;
}
.text-yellow-600 {
    color: #ca8a04;
}
.bg-orange-600 {
    background-color: #ea580c;
}
.from-amber-400 {
    --tw-gradient-from: #fbbf24;
    --tw-gradient-to: rgba(251, 191, 36, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-orange-500 {
    --tw-gradient-to: #f97316;
}
.text-amber-600 {
    color: #d97706;
}
