/* General container and layout styling */
.seoroi {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form styling */
.seoroi .Calculator_form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.seoroi .form-group {
    margin-bottom: 20px;
}

.seoroi .form-group label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.seoroi .form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
}

.seoroi .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button styling */
.seoroi .formsubmit {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.seoroi .formsubmit:hover {
    background-color: #0056b3;
}

/* Results section */
.seoroi .Calculator_detail {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.seoroi .Calculator_detail strong {
    font-size: 18px;
    color: #333;
}

.seoroi .Calculator_detail p {
    font-size: 14px;
    margin: 10px 0;
    color: #555;
}

.seoroi .Calculator_detail .est-value {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
}

/* Talk section */
.seoroi .talk_sec {
    text-align: center;
    margin-top: 20px;
}

.seoroi .talk_sec strong {
    font-size: 16px;
    color: #333;
}

.seoroi .talk_bnt {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.seoroi .talk_bnt:hover {
    background-color: #218838;
}

/* Responsiveness */
@media (max-width: 768px) {
    .seoroi .row {
        flex-direction: column;  /* Stack the columns vertically */
    }

    .seoroi .col-lg-7, .seoroi .col-lg-5 {
        width: 100%;  /* Make columns take full width on small screens */
    }

    .seoroi .formsubmit {
        width: auto;  /* Adjust the width of the form button */
    }
}
/* Talk Section */
.seoroi .talk_sec {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seoroi .talk_sec strong {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    display: block;
    margin-bottom: 15px;
}

.seoroi .talk_sec br {
    display: none; /* Remove the break for mobile responsiveness */
}

.seoroi .talk_bnt {
    display: inline-block;
    padding: 12px 30px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.seoroi .talk_bnt:hover {
    background-color: #218838;
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.seoroi .talk_bnt:active {
    transform: translateY(2px); /* Push down effect when clicked */
}
/* Currency Buttons Styling */
.currency-btn {
    font-size: 16px;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    margin: 0 10px;
    transition: background-color 0.3s;
    background-color: #fff;
    color: #333;
}

.currency-btn.active {
    background-color: #e74c3c; /* Red background for active button */
    color: white;
}

.currency-btn:hover {
    background-color: #c0392b; /* Darker red on hover */
}
/* Main container for .seoroi */
.seoroi {
    font-family: Arial, sans-serif;
    margin-top: 50px;
    color: #333; /* Default text color */
}

/* Container for currency buttons inside .seoroi */
.seoroi .currency-btn-container {
    display: flex;
    justify-content: center;  /* Place buttons on the left and right */
    align-items: center;  /* Vertically center the buttons */
    width: 100%;  /* Full width */
    margin: 20px 0;  /* Some space around the buttons */
}

/* Currency Buttons Styling */
.seoroi .currency-btn {
    font-size: 16px;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    transition: background-color 0.3s;
    background-color: #fff;
    color: #333;
}

.seoroi .currency-btn.active {
    background-color: #e74c3c; /* Red background for active button */
    color: white;
}

.seoroi .currency-btn:hover {
    background-color: #c0392b; /* Darker red on hover */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .seoroi .currency-btn-container {
        justify-content: center;  /* Center buttons horizontally on mobile */
    }

    .seoroi .currency-btn {
        width: 120px;  /* Adjust button width on mobile */
    }
}

/* Form Styling */
.seoroi .Calculator_form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 1px solid #ccc;
}

/* Result Styling */
.seoroi .Calculator_detail {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Heading for Results */
.seoroi .Calculator_detail strong {
    font-size: 24px;
    color: #222;
    display: block;
    margin-bottom: 15px;
}

/* Result Sections */
.seoroi .Calculator_detail p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.seoroi .Calculator_detail span {
    font-weight: bold;
}

.seoroi .Calculator_detail b {
    font-size: 20px;
    color: #333;
}
