/**
 * Custom styles for the After Show Report button layout
 */

/* Button layout styles */
.rota-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rota-actions .left-buttons {
    display: flex;
    gap: 10px;
}

.rota-actions .right-buttons {
    display: flex;
}

.save-message {
    width: 100%;
    margin-top: 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .rota-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .rota-actions .left-buttons,
    .rota-actions .right-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .rota-actions button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .rota-actions .right-buttons {
        order: 3; /* Make After Show Report button appear at the bottom on mobile */
    }
    
    .save-message {
        order: 4;
    }
}

/* Button styles */
.button.after-show-report {
    background-color: #ff46dc;
    color: white;
    border-color: #ff46dc;
}

.button.after-show-report:hover {
    background-color: #e03fc3;
    border-color: #e03fc3;
}

.button.after-show-report.report-submitted {
    background-color: #4caf50;
    border-color: #4caf50;
}

.button.after-show-report.report-submitted:hover {
    background-color: #45a049;
    border-color: #45a049;
}
