
.del-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.del-notice {
    padding: 10px;
    background: #4CAF50;
    color: white;
    margin-bottom: 15px;
    border-radius: 3px;
}

.del-expense-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.del-expense-table th, 
.del-expense-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.del-expense-table input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.del-total {
    text-align: right;
    font-size: 18px;
    margin: 15px 0;
}

.del-total-amount {
    font-weight: bold;
    color: #2a6496;
}

.del-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.del-actions button, 
.del-actions input[type="submit"] {
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.del-actions button:hover, 
.del-actions input[type="submit"]:hover {
    background: #45a049;
}

.del-remove-row {
    background: #f44336 !important;
}

.del-remove-row:hover {
    background: #d32f2f !important;
}

.del-print {
    background: #2196F3 !important;
}

.del-print:hover {
    background: #0b7dda !important;
}

@media print {
    .del-actions, .del-remove-row {
        display: none !important;
    }
    
    .del-container {
        border: none;
        padding: 0;
    }
    
    .del-expense-table {
        width: 100%;
    }
}
    