* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    background: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background: #2a2a3e;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 30px 20px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a2e;
    font-style: italic;
    margin-bottom: 30px;
    text-align: left;
}

/* Form Styles */
.removal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    padding-right: 40px;
}

.input-icon {
    position: absolute;
    right: 12px;
    color: #999;
    font-size: 18px;
    cursor: pointer;
}

/* Rich Text Editor */
.rich-text-editor {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.toolbar {
    display: flex;
    gap: 5px;
    padding: 8px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.toolbar-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.2s;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar-btn:hover {
    background-color: #e0e0e0;
}

.toolbar-btn strong {
    font-weight: bold;
}

.toolbar-btn em {
    font-style: italic;
}

.editor-content {
    min-height: 150px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    outline: none;
    overflow-y: auto;
    max-height: 300px;
}

.editor-content:focus {
    outline: none;
}

.editor-content p {
    margin: 0 0 10px 0;
}

.form-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background-color: #fafafa;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.file-upload-area:hover {
    border-color: #667eea;
    background-color: #f5f5f5;
}

.file-upload-area.drag-over {
    border-color: #667eea;
    background-color: #f0f0ff;
}

.upload-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.file-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 14px;
}

.file-name {
    font-weight: 500;
    color: #1a1a2e;
}

.file-size {
    color: #666;
    font-size: 12px;
}

.remove-file {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #e74c3c;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.remove-file:hover {
    color: #c0392b;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

/* Success Message */
.success-message {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.main-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    font-size: 12px;
    color: #667eea;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .form-title {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
    }
}

