/* pas2/assets/css/styles.css */

/* Center the content vertically and horizontally */
.min-vh-100 {
    min-height: 100vh;
}

/* Style the card to match the image */
.card {
    border-radius: 15px;
    background-color: #f5f5f5; /* Light gray background as in the image */
}

/* Title styling */
.display-4 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Subtitle styling */
.text-muted {
    font-size: 1.1rem;
}

/* Button styling */
.btn-success {
    background-color: #28a745; /* Green color for "Start New Game" */
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #007bff; /* Blue color for "View History" */
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

/* Rounded buttons */
.btn-lg.rounded-pill {
    border-radius: 50px;
}

/* Tagline at the bottom */
.card-body p:last-child {
    font-size: 0.9rem;
    color: #666;
}
/* pas2/assets/css/styles.css */

/* Existing styles from index.php */
.min-vh-100 {
    min-height: 100vh;
}

.card {
    border-radius: 15px;
    background-color: #f5f5f5;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.text-muted {
    font-size: 1.1rem;
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.btn-lg.rounded-pill {
    border-radius: 50px;
}

.card-body p:last-child {
    font-size: 0.9rem;
    color: #666;
}

/* New styles for new_game.php */
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control, .form-select {
    border-radius: 8px;
    background-color: #fff;
}

.input-group .btn-outline-secondary {
    border-radius: 8px;
}
/* pas2/assets/css/styles.css */

/* Existing styles */
.min-vh-100 {
    min-height: 100vh;
}

.card {
    border-radius: 15px;
    background-color: #f5f5f5;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.text-muted {
    font-size: 1.1rem;
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.btn-lg.rounded-pill {
    border-radius: 50px;
}

.card-body p:last-child {
    font-size: 0.9rem;
    color: #666;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control, .form-select {
    border-radius: 8px;
    background-color: #fff;
}

.input-group .btn-outline-secondary {
    border-radius: 8px;
}

/* New styles for game.php */
.table {
    background-color: #fff;
    border-radius: 8px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.btn-sm {
    font-size: 0.9rem;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}