@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
#dps-search-container {
    font-family: "Poppins", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}
.dps-header {
    margin-bottom: 1.5rem;
}
.dps-header img.mail-icon {
    height: 100px;
    left: -20%;
    position: absolute;
    top: 0;
    width: 100px;
}
.dps-header img.plane-icon {
    height: 100px;
    position: absolute;
    right: -20%;
    top: 0;
    width: 100px;
}
.dps-header h1{
color: #34234d;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin: auto;
    position: relative;
    text-align: center;
}
.dps-header p{
        color: #323537;
    font-size: 22px;
    font-weight: 500;
    line-height: 31px;
    margin: auto;
    max-width: 800px;
    padding: 10px 0;
    position: relative;
    text-align: center;
}
#dps-search-form {
    display: flex;
    gap: .75rem;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    position: relative;
}

#dps-search-input {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    padding-left: calc(1.125em - 2px);
    padding-right: calc(1.125em - 2px);
    align-items: center;
    background-color: #f8f8ff;
    border: 1px solid #cfcfe6;
    box-shadow: none;
    color: #222d39;
    display: flex;
    font: 300 15px / 30px Poppins, sans-serif;
    height: 60px;
    outline: none;
    width: 100%;
}

#dps-search-form button {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: 0;
    position: absolute;
    right: 10px;
    top: 3px;
    z-index: 2;
    background-color: #027aff;
    border-color: #027aff;
    color: #fff;
    height: 54px;
}

#dps-search-form button:hover {
    background: #0056b3;
}
.dps-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.dps-table-header h5{
    color: #34234d;
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin: 0px;
}
.dps-table-header label{
        color: #7f88a6;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
#dps-loading {
    text-align: center;
    padding: 20px;
}

#dps-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#dps-results-table th,
#dps-results-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
#dps-results-table td a{
text-decoration: none;
}
#dps-results-table th {
    background: #f8f9fa;
}

.dps-copy-btn {
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
        color: #ffffff;
    background-color: #027aff;
    border-color: #027aff;
}

.dps-copy-btn:hover {
    opacity: 0.7;
}