.fessup-uni-header {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 1.2em;
}

.fessup-uni-header__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.fessup-uni-header__name {
    font-weight: 700;
    font-size: 1.2em;
    color: #333;
}

.fessup-alert {
    position: relative;
    border-radius: 12px;
    padding: 2em 2em 2em 5em;
    margin-bottom: 1.5em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.fessup-alert__icon {
    position: absolute;
    top: -25px;
    left: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.2;
    transform: rotate(-15deg);
}

.fessup-alert__icon svg {
    width: 100%;
    height: 100%;
}

.fessup-alert__content {
    position: relative;
    z-index: 1;
}

.fessup-alert__headline {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.fessup-alert__body {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

#fessup-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.fessup-field {
    margin-bottom: 1.2em;
}

.fessup-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4em;
}

.fessup-field textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    resize: vertical;
}

.fessup-field input[type="file"] {
    font-size: 0.95em;
}

.fessup-char-count {
    text-align: right;
    font-size: 0.85em;
    color: #888;
    margin-top: 0.2em;
}

.fessup-btn {
    display: inline-block;
    padding: 0.7em 2em;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
}

.fessup-btn:hover {
    background: #555;
}

.fessup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fessup-msg {
    margin-top: 1em;
    padding: 0.8em 1em;
    border-radius: 6px;
    font-size: 0.95em;
}

.fessup-msg--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fessup-msg--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#fessup-image-preview {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-top: 0.6em;
    padding: 0.5em;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

#fessup-image-thumb {
    max-width: 80px;
    max-height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.fessup-btn-remove {
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.3em 0.8em;
    font-size: 0.85em;
    color: #a00;
    cursor: pointer;
}

.fessup-btn-remove:hover {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.fessup-help-text {
    margin-top: 1.5em;
    padding: 1em;
    font-size: 0.9em;
    line-height: 1.6;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

.fessup-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.fessup-popup {
    background: #fff;
    border-radius: 12px;
    padding: 2em 2.5em;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fessup-popup__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4edda;
    color: #155724;
    font-size: 1.5em;
    line-height: 50px;
    margin: 0 auto 1em;
}

.fessup-popup__text {
    font-size: 1em;
    color: #333;
    margin-bottom: 1.5em;
    line-height: 1.5;
}

.fessup-popup__btn {
    min-width: 120px;
}
