body {
    font-family: Poppins, Helvetica, "sans-serif";
    background-color: #EEF0F8;
}
nav {
    box-shadow: 1px 1px 1px 1px #0000001A;
    padding: 20px 5px 16px 12px;
    width: 100%;
    margin: -10px -10px 10px -10px;
    background-color: white
}

.brand-logo:hover,
.brand-logo:focus {
        text-decoration: none !important;
    }

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}
.brand-logo img {
        display: block; /* removes baseline gap */
        max-width: 140px;
    }
.title {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #000;
    border-left: 1px solid #0000006e;
    padding-left: 10px;
    font-weight: 500;
}
.brand-logo:hover .title {
        color: #000;
    }
#divMain {
    max-width: 50rem;
    margin: 12px auto;
    background-color: white;
    padding: 7px 10px 10px 10px;
    border-radius: 8px;
    box-shadow: 1px 2px 5px 1px #0000001A;
}
    #divMain .header-title h2 {
        margin: 14px 2px 21px 2px;
        font-size: 24px;
        font-family: Poppins, Helvetica, sans-serif;
        font-weight: 500;
        padding-bottom: 18px;
        border-bottom: 1px solid #0000001c;
        color: #363844;
    }
.email-address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    margin: 10px 0px;
}
    .email-address p {
        font-size: 15px !important;
        font-weight: 600;
        font-family: Poppins, Helvetica, "sans-serif" ;
        color: #363844;
    }
.sender-email {
    
    font-size: 18px;
    font-weight: 500;
    color: #000;

}
.custom-message {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}
    .custom-message p {
        font-size: 15px !important;
        font-weight: 600;
        font-family: Poppins, Helvetica, "sans-serif";
        color: #363844;
    }
    .custom-message textarea {
        width: 70%;
        border: 1px solid rgba(0, 0, 0, 0.23);
        font-size: 16px;
        font-family: Poppins, Helvetica, "sans-serif";
        height: 130px;
        padding: 10px;
        border-radius: 6px;
        
    }
        .custom-message textarea:focus {
            outline: none;
            border-color: #007dc58a;
        }
.rec-table {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0px;
    gap: 3.4rem;
}
    .rec-table p {
        font-size: 15px !important;
        font-weight: 600;
        font-family: Poppins, Helvetica, "sans-serif";
        color: #363844;
    }


/* Main table */
.forward-table {
    width: 73%;
    margin: 10px auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #adb2b7;
    border-radius: 6px;
    padding: 16px;
    background-color: #fff;
}

/* Grid styling */
.recipients-grid {
    width: 100%;
    border-collapse: collapse;
}

    .recipients-grid th {
        border: 1px solid #e2e6ea;
        background-color: #f8f9fa;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        padding: 10px 12px;
    }

    .recipients-grid td {
        /*padding: 1px 0;*/
        border: 1px solid #e2e6ea;
        padding: 10px 12px;
    }

/* Inputs */
.form-input {
    width: 98%;
    padding: 9px 5px;
    font-size: 13px;
    border: 1px solid #acaec3;
    border-radius: 6px;
}

    .form-input:focus {
        outline: none;
        border-color: #007dc58a;
    }

/* Spacing row */
.spacer-row {
    height: 10px;
}

/* Buttons row */
.action-row td {

    padding-top: 16px;
    border: none;
}

/* Buttons */
.action-cell {
    text-align: right;
    padding-top: 16px;
}
    .action-cell .btn-primary,
    .action-cell .btn-secondary {
        margin-left: 8px;
    }


.btn-primary,
.btn-secondary {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary {
    background-color: #007dc5;
    border: none;
    color: #fff;
}

    .btn-primary:hover {
        background-color: #0062a0;
    }

.btn-secondary {
    background-color: #007dc5;
    border: 1px solid #ced4da;
    color: #fff;
}

    .btn-secondary:hover {
        background-color: #0062a0;
    }
