.wig-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.wig-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.wig-container input,
.wig-container textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.wig-container input:focus,
.wig-container textarea:focus {
    border-color: #007cba;
    outline: none;
}

.wig-container button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wig-container button:hover {
    background-color: #005f94;
}

.wig-container #wig-result {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.wig-container #wig-result a {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.wig-container #wig-result a:hover {
    background-color: #1ebe5d;
}

.wig-container select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    appearance: none; /* hilangkan style default browser */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23777' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.wig-container select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.5);
}

/* ===== Tambahan untuk tombol Facebook dan Instagram agar center dan berjajar vertikal ===== */
.wig-container #wig-result #share-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.wig-container #wig-result #share-buttons a,
.wig-container #wig-result #share-buttons button {
    width: 220px !important;
    padding: 10px 0 !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: center !important;
}

.wig-container #wig-result #share-buttons a#fb-share {
    background-color: #3b5998 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.wig-container #wig-result #share-buttons button#ig-copy {
    background-color: #C13584 !important;
    border: none !important;
    color: #fff !important;
}
