/* Dashboard Style - Consistent with futbanner.php design */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00c6ff;
    margin-bottom: 30px;
    font-weight: 600;
}

.dashboard-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Card Styles */
.dashboard-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
    border-color: rgba(0, 198, 255, 0.3);
}

.dashboard-card h3 {
    color: #00c6ff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dashboard-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.btn-success {
    background: linear-gradient(135deg, #1cc88a, #17a673);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(28, 200, 138, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 200, 138, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.btn-danger {
    background: linear-gradient(135deg, #e74a3b, #be2617);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(231, 74, 59, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 74, 59, 0.5);
    color: #ffffff;
    text-decoration: none;
}

/* Input Styles */
.dashboard-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.dashboard-input:focus {
    outline: none;
    border-color: #00c6ff;
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

/* Message Styles */
.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(28, 200, 138, 0.2);
    border: 1px solid #1cc88a;
    color: #1cc88a;
}

.message.error {
    background: rgba(231, 74, 59, 0.2);
    border: 1px solid #e74a3b;
    color: #e74a3b;
}

.message.warning {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    color: #ffc107;
}

/* List Styles */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:before {
    content: "•";
    color: #00c6ff;
    font-weight: bold;
    margin-right: 10px;
}

/* Image Styles */
.dashboard-image {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #00c6ff;
    box-shadow: 0 6px 15px rgba(0, 198, 255, 0.2);
}

/* Radio Button Styles */
.radio-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.radio-options label {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    user-select: none;
}

.radio-options input[type="radio"] {
    display: none;
}

.radio-options label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00c6ff;
}

.radio-options input[type="radio"]:checked + label {
    background: #00c6ff;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px;
        margin: 10px;
    }

    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-subtitle {
        font-size: 1rem;
    }

    .dashboard-card {
        padding: 20px;
    }

    .btn-primary, .btn-success, .btn-danger {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .radio-options {
        flex-direction: column;
        align-items: center;
    }

    .radio-options label {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        padding: 15px;
        margin: 5px;
    }

    .dashboard-title {
        font-size: 1.8rem;
    }

    .dashboard-card {
        padding: 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00c6ff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} 