/* Style untuk aplikasi Prediksi Togel */
body {
    background-color: #f8f9fa;
}

/* Style untuk kartu prediksi */
.prediksi-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    cursor: pointer;
    border: 2px solid #ffc107;
    overflow: hidden;
}

.prediksi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.prediksi-card .card-header {
    background-color: #343a40;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 10px;
}

.prediksi-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Style untuk tabel prediksi */
.prediksi-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.prediksi-table th {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px;
}

.prediksi-table td {
    padding: 8px 10px;
    text-align: center;
    font-weight: bold;
}

.prediksi-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Style untuk modal */
.modal-header {
    background-color: #343a40;
    color: white;
}

/* Style untuk admin panel */
.admin-sidebar {
    background-color: #343a40;
    color: white;
    min-height: 100vh;
}

.admin-sidebar .nav-link {
    color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.admin-sidebar .nav-link.active {
    background-color: #ffc107;
    color: #343a40;
}

/* Style untuk form */
.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.btn-primary {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-primary:hover {
    background-color: #23272b;
    border-color: #23272b;
}

/* Style untuk angka prediksi */
.angka-main {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prediksi-card .card-img-top {
        height: 150px;
    }
    
    .angka-main {
        font-size: 1.5rem;
    }
}