.dms-search-certs-widget {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
}

.dms-sc-title {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #222;
}

.dms-sc-subtitle {
    color: #666;
    margin: 0 0 28px;
    font-size: 15px;
}

.dms-sc-search-box {
    margin: 18px 0 34px;
    text-align: left;
}

.dms-sc-label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    color: #222;
}

.dms-sc-input-group {
    display: flex;
    gap: 12px;
}

.dms-sc-input {
    flex: 1 1 auto;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    box-sizing: border-box;
}

.dms-sc-button {
    background: #e87f1f;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
}

.dms-sc-button.disabled,
.dms-sc-button[disabled] {
    background: #cfcfcf;
    color: #8a8a8a;
    cursor: not-allowed;
    opacity: 0.9;
    pointer-events: none;
    box-shadow: none;
}

.dms-sc-table-wrapper {
    margin-top: 26px;
    overflow-x: auto;
}

.dms-sc-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.dms-sc-th {
    background: #222;
    color: #fff;
    text-align: left;
    padding: 18px 16px;
    font-weight: 700;
}

.dms-sc-td {
    background: #fff;
    padding: 22px 16px;
    border: 1px solid #e6e6e6;
    vertical-align: top;
    color: #222;
    font-weight: 600;
}

.dms-sc-table thead tr th:first-child {
    border-top-left-radius: 3px;
}

.dms-sc-table thead tr th:last-child {
    border-top-right-radius: 3px;
}

.dms-sc-footer {
    margin-top: 28px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.dms-sc-link {
    color: #0b71c9;
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 720px) {
    .dms-sc-title {
        font-size: 24px;
    }

    .dms-sc-input {
        padding: 12px;
    }

    .dms-sc-button {
        padding: 10px 16px;
    }

    .dms-sc-td {
        padding: 14px 10px;
    }
}