/*
	Style for frontend
*/

/* Modern Design Start */

.jsrmsp-container {
    padding: 0px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.jsrmsp-container > h2 {
    color: #2e3b88;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.jsrmsp-container p {
    margin-bottom: 20px;
    font-size: 15px;
}
.jsrmsp-form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ECECEC;
    padding: 25px 15px;
    margin-bottom: 20px;
}
.jsrmsp-form-group input[type="text"] {
    width: 60%;
    padding: 12px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
}
.jsrmsp-form-group button {
    padding: 13px 20px;
    background-color: #2E3192 !important;
    color: #fff !important;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.jsrmsp-form-group button:hover {
    background-color: #222577 !important;
    color: #fff;
}
.jsrmsp-error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* Output data style */

.jsrmsp-result-container {
    width: 60%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}
.jsrmsp-result-container > h2 {
    color: #2e3b88;
    margin-bottom: 20px;
}
.jsrmsp-details {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}
.jsrmsp-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.jsrmsp-details-row .jsrmsp-label {
    font-weight: bold;
    color: #2e3b88;
    width: 45%;
    text-align: right;
}
.jsrmsp-details-row .jsrmsp-value {
    color: #333;
    width: 45%;
    text-align: left;
}

.jsrmsp-details-row .jsrmsp-data-seperator {
    color: #333;
    width: 10%;
    text-align: center;
}

/* Search results styles */
#tc-search-results p {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Modern Design End */