/* ############## ADMIN EDIT FORM ###############*/
.wrap .form-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    /* background: red; */
}

.wrap .form-section h2 {
    font-size: 1.25em;
    margin-top: 0;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px;
}

/* Field rows */
.wrap .form-field,
.wrap .field-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    /* background-color: yellowgreen; */
}

.wrap .form-field label,
.wrap .field-group label {
    width: 160px;
    font-weight: 600;
    margin-right: 10px;
    line-height: 1.5;
}

.wrap .form-field input[type="text"],
.wrap .field-group input[type="text"],
.wrap .form-field select,
.wrap .field-group select,
.wrap .form-field textarea,
.wrap .field-group textarea {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

/* File‐download link */
.wrap .file-download a {
    display: inline-block;
    padding: 6px 10px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
}

.wrap .file-download a:hover {
    background: #f1f1f1;
}

/* Buttons */
.button-success {
    background: #46b450;
    border-color: #46b450;
    color: #fff;
}

.button-success:hover,
.button-success:focus {
    background: #159f40;
    border-color: #159f40;
    color: #fff;
}

.button-danger {
    background: #dc3232;
    border-color: #dc3232;
    color: #fff;
}

.button-danger:hover,
.button-danger:focus {
    background: #b82b2b;
    border-color: #b82b2b;
    color: #fff;
}

/* Tighten up the submit section */
.wrap .submit {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}


/* ###### DASHBOARD FRONT-END ####### */
.aseef-dashboard {
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    max-width: 100%;
}

.aseef-dashboard h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* Summary Cards */
.aseef-dashboard .summary-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.aseef-dashboard .summary-card {
    flex: 1;
    min-width: 200px;
    background-color: #f4f6f8;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-card.total {
    background-color: #f0f0f0;
}

.summary-card.pending {
    background-color: #fff3cd;
}

.summary-card.approved {
    background-color: #d4edda;
}

.summary-card p:first-child {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.summary-card p:last-child {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

/* Table */

#submissionTable th{
    background: #F4F5F7;
    border-bottom: solid 1px #DFE1E6;
    text-align: center;
    border-right: none;
    /*border-top: solid 1px #DFE1E6;*/
}
table {
  border: none;
  border-radius: 10px;
}

.table-container{
 border-radius: 8px ;   
}


#submissionTable td, th {
    padding: 10px ;
   border-bottom: solid 1px #DFE1E6;
    text-align: center;
    border-right: none;
    color:#6B778C;
      white-space: nowrap;

}
.aseef-dashboard .table-container {
    overflow-x: auto;
}

/*.aseef-dashboard table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    border: 1px solid #ccc;*/
/*    background-color: #fff;*/
/*    font-size: 14px;*/
/*}*/

/*.aseef-dashboard th,*/
/*.aseef-dashboard td {*/
/*    padding: 12px 14px;*/
/*    border: 1px solid #ddd;*/
/*    text-align: left;*/
/*    white-space: nowrap;*/
/*}*/

/*.aseef-dashboard thead {*/
/*    background-color: #e9ecef;*/
/*    color: #333;*/
/*    font-weight: bold;*/
/*}*/

/*.aseef-dashboard tbody tr:nth-child(even) {*/
/*    background-color: #f9f9f9;*/
/*}*/

/*.aseef-dashboard tbody tr:hover {*/
/*    background-color: #eef2f7;*/
/*}*/

/*.aseef-dashboard a {*/
/*    color: #0073aa;*/
/*    text-decoration: underline;*/
/*}*/

/*.aseef-dashboard a:hover {*/
/*    color: #005f8d;*/
/*}*/


/* Main Form Container */
.aseef-custom-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
 
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input:invalid {
    /*border-color: #e74c3c;*/
}

.hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

/* Messages */
.aseef-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.aseef-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.aseef-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Button */
button[type="submit"] {
    background: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #0056b3;
}

/* body {
    background-color: red;
} */








