/* General Button Styling */
.btn {
    padding: 10px 20px;
    border: none;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    margin: 5px 5px; /* Adjusted margins for consistent spacing */
    transition: 0.3s;
    width: auto; /* Allows buttons to resize based on content */
    cursor: pointer;
    border-radius: 4px;
}

/* Different Button Colors */
.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-warning {
    background-color: #ffc107;
    color: white;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-green {
    background-color: #28a745;
    color: white;
}

/* Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Form Input Styling */
.form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Container Styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

.welcome-message {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Full-width button styling */
.full-width-btn {
    width: 100%; /* Make the buttons full-width */
    margin-top: 10px;
    display: block;
    text-align: center;
}
