* {
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
}

body {
    background-color: #191E29;
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    color: #F2BF00;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #191E29 !important;
    border: 3px solid #00FF7F !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 255, 127, 0.3);
    transition: all 0.3s ease;
}

th, td {
    padding: 14px;
    border-bottom: 2px solid #00FF7F;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

th {
    background-color: #00FF7F !important;
    color: #191E29 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    background-color: #252A34 !important;
    color: white !important; 
}

tr:hover {
    background-color: rgba(0, 255, 127, 0.1) !important;
}

.btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0px 3px 6px rgba(0, 255, 127, 0.4);
    margin-right: 10px;
    margin-bottom: 10px; 
}

.btn-primary {
    background-color: #00FF7F;
    color: #191E29;
    border: none;
}

.btn-primary:hover {
    background-color: #F2BF00;
    box-shadow: 0px 0px 15px #F2BF00;
    color: #191E29 !important;
}

.btn-danger {
    background-color: #FF4C4C;
    color: white;
    border: none;
}

.btn-danger:hover {
    background-color: #D32F2F;
    box-shadow: 0px 0px 15px #D32F2F;
}

.btn-back {
    background-color: #00FF7F;
    color: #191E29;
    border: none;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #F2BF00;
    box-shadow: 0px 0px 15px #F2BF00;
}

.btn.btn-secondary {
    background-color: #00FF7F !important;
    color: #191E29 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
}

.btn.btn.btn-secondary:hover {
    background-color: #F2BF00 !important;
    box-shadow: 0px 0px 10px #F2BF00 !important;
    color: #191E29 !important;
}

.search-container {
    margin-bottom: 20px;
}



@media (max-width: 768px) {
    .table {
        font-size: 14px;
    }

    th, td {
        padding: 10px;
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 14px;
        margin-right: 0; 
        margin-bottom: 12px; 
    }

    .btn-back {
        padding: 10px 18px;
        font-size: 14px;
    }

    .search-input {
        width: 80%;
    }
}

