/* ===== BUTTONS ===== */
button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    opacity: 0.8;
}

button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

button.delete {
    background-color: #f44336;
}

/* ===== NAVIGATION BUTTONS ===== */
.nav-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #45a049;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

/* ===== ACTION BUTTONS ===== */
#workWithBtn, #storeCheckBtn {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-right: 0;
}

#workWithBtn {
    background-color: #4CAF50;
}

#storeCheckBtn {
    background-color: #2196F3;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ===== DATABASE ACTION BUTTONS ===== */
.db-action-btn {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.db-action-btn:hover {
    background-color: #45a049;
}

/* ===== SPECIFIC BUTTON VARIANTS ===== */
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

.action-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.view-btn {
    background-color: #4CAF50;
    color: white;
}

.view-btn:hover {
    background-color: #45a049;
}

.page-btn {
    padding: 6px 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.page-btn:hover:not(:disabled) {
    background-color: #45a049;
}

.page-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* ===== REPORT BUTTONS ===== */
.report-button-container {
    margin: 15px 0;
    text-align: center;
}

.report-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.report-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.report-button:hover {
    background-color: #45a049;
}

/* ===== CAMERA BUTTON ===== */
.camera-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    flex: 1;
}

.camera-button:hover {
    background-color: #45a049;
}

.camera-button-icon {
    width: 24px;
    height: 24px;
}

/* ===== BACK BUTTONS ===== */
#mhlBackBtn, #opportunitiesBackBtn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#mhlBackBtn:hover, #opportunitiesBackBtn:hover {
    background-color: #45a049;
}

/* ===== SUBMIT BUTTONS ===== */
.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    min-width: 200px;
    transition: background-color 0.3s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #45a049;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* ===== CALENDAR NAV BUTTONS ===== */
.nav-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #45a049;
}