/* 
 * PlayTime - Pool Hall Session Management System
 * Main stylesheet
 */

/* Basic styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

/* Add extra margin to the main content on small screens */
@media (max-width: 768px) {
    main.container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Make cards look nicer */
.card {
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-header {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

/* Session timer styling */
.session-timer {
    font-size: 3rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Custom button styling */
.btn {
    border-radius: 0.3rem;
}

/* Navigation bar customizations */
.navbar-brand {
    font-weight: bold;
}

/* Footer styling */
footer {
    border-top: 1px solid #ddd;
}
