.lawyer-search-wrapper {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

.lawyer-search-form input {
    width: 70%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.lawyer-search-form button {
    padding: 12px 22px;
    border: none;
    background: #0f172a;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.lawyer-search-form button:hover {
    background: #1e293b;
}

.lawyer-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.lawyer-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
}

.lawyer-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.lawyer-card p {
    margin: 6px 0;
    font-size: 14px;
}

.approved-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: green;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.no-result {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 20px;
}
