/* Custom button classes for raffle_detail.html */

.btn {
    background-color: rgb(30 41 59); /* bg-slate-800 */
    color: rgb(203 213 225); /* text-slate-300 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    padding-top: 0.5rem; /* py-2 */
    padding-bottom: 0.5rem;
    border-radius: 0.5rem; /* rounded-lg */
    transition-property: all;
    transition-duration: 150ms;
}

.btn:hover {
    background-color: rgb(51 65 85); /* hover:bg-slate-700 */
}

.counter-btn {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    border-radius: 0.75rem; /* rounded-xl */
    background-color: rgb(51 65 85); /* bg-slate-700 */
    color: white;
    font-weight: bold;
    font-size: 1.5rem; /* text-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: all;
    transition-duration: 150ms;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.counter-btn:hover {
    background-color: rgb(71 85 105); /* hover:bg-slate-600 */
}

.qty-input {
    flex: 1;
    background-color: rgb(2 6 23); /* bg-slate-950 */
    border: 1px solid rgb(51 65 85); /* border-slate-700 */
    border-radius: 0.75rem; /* rounded-xl */
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem; /* text-xl */
    padding-top: 0.75rem; /* py-3 */
    padding-bottom: 0.75rem;
    outline: none;
}

.qty-input:focus {
    outline: 2px solid rgb(139 92 246); /* focus:ring-violet-500 */
    outline-offset: 2px;
}

.submit-btn {
    width: 100%;
    background-color: rgb(124 58 237); /* bg-violet-600 */
    color: white;
    font-weight: bold;
    padding-top: 1rem; /* py-4 */
    padding-bottom: 1rem;
    border-radius: 0.75rem; /* rounded-xl */
    transition-property: all;
    transition-duration: 150ms;
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.2), 0 4px 6px -2px rgba(124, 58, 237, 0.2); /* shadow-lg shadow-violet-500/20 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* gap-2 */
    transform: scale(1);
}

.submit-btn:hover {
    background-color: rgb(109 40 217); /* hover:bg-violet-700 */
    transform: scale(1.02); /* hover:scale-[1.02] */
}
