#sm-lookup-result table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    direction: rtl;
    background-color: #fff;
    margin-top: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

#sm-lookup-result th,
#sm-lookup-result td {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    text-align: right;
    vertical-align: middle;
}

#sm-lookup-result th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

#sm-lookup-result tbody tr:nth-child(odd) {
    background-color: #fcfcfc;
}

#sm-lookup-result .no-results {
    text-align: center;
    color: #777;
    padding: 20px;
    font-style: italic;
}

#sm-lookup-result h3 {
    margin-top: 35px;
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

#sm-lookup-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    direction: rtl;
}

#sm-lookup-form input[type="text"],
#sm-lookup-form input[type="password"] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 240px;
    transition: border-color 0.3s ease;
}

#sm-lookup-form input[type="text"]:focus,
#sm-lookup-form input[type="password"]:focus {
    border-color: #007cba;
    outline: none;
}

#sm-lookup-form button[type="submit"] {
    background-color: #007cba;
    color: white;
    padding: 9px 18px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#sm-lookup-form button[type="submit"]:hover {
    background-color: #005a95;
}