﻿body {
    background-color: #f7f9fc;   
}

.cost-container {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.costForm {
    color: #009990;
    font-weight: 500;
    margin-bottom: 30px;
    /*font-size: 1.8rem;*/
}
.returnForm {
    color: #009990;
    font-weight: 500;
    margin-bottom: 30px;
    
}
.recurrringForm {
    color: #009990;
    font-weight: 500;
    margin-bottom: 30px;
    
}

.form-label {
    font-weight: bold;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    box-shadow: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

 .form-control:focus,
 .form-select:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
 }
button, input, optgroup, select, textarea{
    margin-bottom:10px !important;
}


.row {
    align-items: center;
    padding: 10px 0;
}

.cost-container .row:not(.submit-row):nth-child(even) {
    background-color: #f9f9f9;
}

.cost-container .row:not(.submit-row):nth-child(odd) {
    background-color: #ffffff;
}

.submit_btn {
    background-color: #640D5F;
    width: 130px;
    height:40px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border:none;
    border-radius: 7px;
    color: antiquewhite;
}
    .submit_btn:hover {
        background-color: #009990;
        color: antiquewhite;
    }
@media (max-width: 768px) {
    .cost-container {
        padding: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}

/*  Table */
.formtable-container {
    overflow-x: auto;
}

table {
    width: 100%;
    /*border-collapse: collapse;*/
    min-width: 1200px;
   
}

th, td {
    border: 1px solid #ccc;
    text-align: center;
    padding: 8px;
    
}

th {
    background-color: #CBA35C;
    color: #640D5F;
    letter-spacing:1px;
    font-size:18px;
    font-weight:500;
}

/*tr:nth-child(even) {
    background-color: #fafafa;
}*/

.formtable-container input[type="number"] {
    width: 100px;
}

tfoot td {
    font-weight: bold;
    background-color: #CBA35C;
    color: #640D5F;
}
.table-input {
    border: none;
    width: 100%;
    box-sizing: border-box;
    padding: 4px;
    font-size: 14px; /* Optional: match table font */
}
.table-input:focus {
    outline: none;
        
}




    


   



