﻿body {
}

.table_cont1 {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.submit-button {
    background-color: #000000; /* Bootstrap primary color */
    color: white;
    border: none;
    padding: 50px 35px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    .submit-button:hover {
        background-color: forestgreen; /* Darker shade on hover */
    }


#container {
    width: 1071px;
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

#familyTable {
    width: 100%;
    border-collapse: collapse;
}

    #familyTable th, #familyTable td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
    }

    #familyTable th {
        background-color: #f2f2f2;
    }

    #familyTable input {
        width: 100%;
        padding: 5px;
        border: 1px solid #ccc;
    }

/* General styles for the header */
.table_cont.header_new {
    border: none;
    background-color: #b10819;
    height: 100px;
    padding-top: 10px;
}

/* Styles for the h4 element */
.table_cont.column_2 h4 {
    padding: 5px;
    background: #fa9300;
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    color: #000000;
    margin-top: 0px; 
}

/* Responsive styles */
@media (max-width: 768px) {
    .table_cont.header_new {
        height: auto; /* Allow height to adjust */
        padding: 10px; 
    }

    .table_cont.column_2 h4 {
        margin-top: 0px; 
        
    }
}
