/* assets/css/admin-style.css */
.geosec-chips-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    min-height: 40px;
    border-radius: 4px;
    max-width: 600px;
}

.geosec-chip {
    background: #0073aa;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.geosec-chip .remove-chip {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.geosec-chip .remove-chip:hover {
    color: #ffdce0;
}

.geosec-input {
    border: none !important;
    box-shadow: none !important;
    flex-grow: 1;
    padding: 5px !important;
    min-width: 150px;
}

.geosec-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

#geosec-suggestions {
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 100%;
    max-width: 600px;
    z-index: 1000;
    display: none;
}

#geosec-suggestions div {
    padding: 8px 10px;
    cursor: pointer;
}

#geosec-suggestions div:hover {
    background: #f0f0f1;
}

.geosec-wrapper {
    position: relative;
    max-width: 600px;
}

/* Toggle Switch */
.geosec-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    vertical-align: middle;
}

.geosec-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.geosec-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.geosec-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.geosec-slider {
    background-color: #2196F3;
}

input:focus+.geosec-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.geosec-slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Credits Section */
.btn-paypal {
    display: inline-flex;
    align-items: center;
    background: #ffc439;
    color: #003087;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px;
}

.btn-paypal:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: #ffce5c;
    color: #003087;
}

.btn-paypal svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}