/* Custom styles for Fantasy Football Draft App */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

.card {
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    background: linear-gradient(45deg, #28a745, #20c997) !important;
}

.draft-number-container {
    margin: 20px 0;
}

.draft-number {
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 48px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    margin: 0 auto;
    animation: pulse 2s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.player-item {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 5px solid #28a745;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.player-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.draft-position {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.alert {
    border-radius: 10px;
    border: none;
}

#errorDisplay {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
    color: white;
}

.text-primary {
    color: #28a745 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .draft-number {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 36px;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 16px;
    }
}