
.styled-proxy-container {
    background-color: #eef6ea;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#styled-proxy-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#styled-url-input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    min-width: 300px;
}

.go-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.premium-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.quick-links {
    margin-top: 15px;
    font-size: 14px;
}

.quick-links a {
    color: #2e7d32;
    text-decoration: underline;
    margin-right: 5px;
}

.loader-section {
    text-align: center;
    display: none;
    margin-top: 30px;
}

.dots-loader span {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    background: #e57373;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) { animation-delay: -0.3s; background: #c5dba3; }
.dots-loader span:nth-child(2) { animation-delay: -0.15s; background: #f06292; }
.dots-loader span:nth-child(3) { animation-delay: 0s; background: #ff8a65; }
.dots-loader span:nth-child(4) { animation-delay: 0.15s; background: #ffab91; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
