/* public/css/style.css */
.container {
    margin-top: 50px;
}
h1, h2, h3, h4 {
    margin-top: 20px;
    margin-bottom: 20px;
}
table {
    margin-bottom: 30px;
}
.modal-body {
    padding: 30px;
}
.modal-title {
    font-weight: bold;
}
.set-input {
    margin-bottom: 15px;
}
.validationMessage {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
.login-info {
    position: absolute;
    top: 10px;
    right: 10px;
}
.circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.circle:hover {
    background-color: #0056b3;
    transition: background-color 0.3s;
    cursor: pointer; /* Change cursor to pointer */
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.winner {
    background-color: #d4edda;
    font-weight: bold;
}

.badge-winner {
    background-color: green;
    color: white;
}

.badge-loser {
    background-color: red;
    color: white;
}

.button-container {
    margin-bottom: 20px;
}
.button-container .btn {
    margin-right: 10px;
    text-align: center;
}

/* General styles */
.btn {
    display: inline-block;
    width: auto;
}

/* Print-specific styles */
@media print {
    .btn {
        width: auto !important;
        display: inline-block !important;
    }
    .no-print {
        display: none;
    }

    .page-break {
        page-break-after: always;
    }
}

.clickable-envelope:hover {
    color: #0056b3; /* Darker color on hover */
    cursor: pointer; /* Change cursor to pointer */
    text-decoration: underline; /* Underline text on hover */
}

@media (max-width: 576px) {
    .modal-fullscreen {
        max-width: 100%;
        margin: 0;
        height: 100%;
    }

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header,
    .modal-fullscreen .modal-body,
    .modal-fullscreen .modal-footer {
        padding: 1rem;
    }

    .modal-fullscreen .modal-header {
        border-bottom: 1px solid #dee2e6;
    }

    .modal-fullscreen .modal-footer {
        border-top: 1px solid #dee2e6;
    }

    .modal-top .modal-dialog {
        margin-top: 0;
    }
}


