/*
    This file won't be overwritten by updates, so you can put custom code here.
*/
/*
    This file won't be overwritten by updates, so you can put custom code here.
*/
/* ==========================
   TOOL SECTION (Height Increased & Centered)
   ========================== */
section.title.tool-title {

    background-color: #efefef; /* White background */
    min-height: 220px; /* Increased height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #ddd; /* Subtle separator */
}

section.title.tool-title .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

section.title.tool-title .flex .icon img {
    width: 60px; /* Adjusted icon size */
    height: 60px;
}

/* Title Styling */
section.title.tool-title .flex .name h1 {  
    font-size: 40px;
    color: #000;
    margin-top: 2px;
    font-weight: bold;
}

section.title h1 {
    font-size: 21px;
    padding: 0;
    margin: 0;
}
section.website .select .button {
    cursor: pointer;
    height: 42px;
    background-color: #000;
}
/* ==========================
   TOOL CONTENT AREA (Min 700px Height)
   ========================== */
section.tool-content {
    min-height: 700px; /* Ensures tools section has space */
    padding: 40px 0;
}
section.website.alt {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    flex-direction: column; /* Ensures elements are stacked */
}

section.website.alt input.text-input {
    width: 60%;
    max-width: 400px;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #000000; /* Black text */
    background-color: #ffffff; /* White background */
    transition: 0.3s ease-in-out;
    text-align: left;
    display: block;
    margin: 0 auto; /* Ensures centering */
}

section.website.alt input.text-input::placeholder {
    color: #000000;
    opacity: 0.6;
}

section.website.alt input.text-input:focus {
    border-color: #ddd;
    outline: none;
}

     
section.generic {
    text-align: center;
}

section.generic h3 {
    font-size: 18px;
    display: inline-block; /* Optional if you want to limit the width of h3 */
}
/* Form Container */
section.tool .form-container {
    width: 100%;
    max-width: 1200px;
    margin: 35px auto; /* Center the form container */
    background: #4CB4E6;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure the form container is block-level */
}

/* Form */
section.tool .form-container form {
    width: 100%;
    margin: 0 auto; /* Center the form horizontally */
    border-top: 2px solid #eef3f6;
    padding: 35px;
}


section.tool .form-container input:focus,
section.tool .form-container select:focus,
section.tool .form-container textarea:focus {
    border-color: #095ecf;
    outline: none;
}

/* Form Title */
section.tool .form-container h2 {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    text-align: center;
}
/* Center the entire section */
section.tool .form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

/* Center input fields */
section.tool .form-container form .tool-form .input input.text-input, 
section.tool .form-container form .tool-form .input select {
    display: block;
    margin: auto;
    text-align: center;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Styling for select dropdown */
section.tool .form-container form select.select-input {
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    height: 28px;
    margin: 5px auto;
    padding: 0 5px;
    font: inherit;
    font-size: 13px;
    text-align: center;
    text-align-last: center;
}



/* ==========================
   TABLE SECTION (Modern, Stylish & Professional)
   ========================== */

section.tool .table-container {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

/* Table Title */
section.tool .table-container h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

/* Table Styling */
section.tool .table-container table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
}

/* Table Header */
section.tool .table-container table thead tr th {
    border-bottom: 3px solid #ececec;
    padding: 12px 20px;
    font-size: 16px; /* Increased font size */
    font-weight: bold; /* Bold text */
    color: #333;
    text-transform: uppercase;
    text-align: left;
    background-color: #f4f7fc; /* Light background for header */
}

/* Table Body */
section.tool .table-container table tbody tr td {
    padding: 12px 20px;
    font-size: 16px; /* Increased font size */
    color: #555;
    border-bottom: 2px solid #ececec;
    vertical-align: middle;
    text-align: left;
}

/* Hover effect for rows */
section.tool .table-container table tbody tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

/* Zebra striping effect for table rows */
section.tool .table-container table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive design */
@media (max-width: 768px) {
    section.tool .table-container {
        padding: 20px;
    }
    
    section.tool .table-container table thead tr th,
    section.tool .table-container table tbody tr td {
        font-size: 14px;
        padding: 8px;
    }
}

footer .copyright {
font-size: 16px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 16px;
    color: #000080;
}

footer .legal a {
    font-size: 16px;
}
.legal a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s ease;
}
section.tool .table-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}









/* Customization start -- do not edit this section */
/* bb7f17a475d5e1fd67cfc824ba9ee4e8 */ header { background-color: #000080; }
/* Customization end */