/* Form Components */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #dcddde;
}

.form-input {
    width: 100%;
    background-color: #40444b;
    border: 1px solid #3c3c41;
    border-radius: 4px;
    padding: 10px 12px;
    color: #dcddde;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #7289da;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}


.file-input-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-button {
    background-color: #7289da;
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.file-input-button:hover {
    background-color: #677bc4;
}

#file-preview {
    margin-top: 12px;
    text-align: center;
}
#file-preview img, #file-preview video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}


/* Badges/Indicators */
.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: bold;
    vertical-align: middle;
}