/* Add Developer Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h2 {
    font-size: 1.25rem;
    color: #111827;
}
.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #374151;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
}
.form-group input:focus {
    border-color: #0066ff;
}
.form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 0.8rem;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}
.submit-btn:hover {
    background: #0052cc;
}
.dev-logo-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    color: #0066ff;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 10px;
    margin-right: 10px;
}
.dev-name-cell {
    display: flex;
    align-items: center;
}

.drop-zone {
    width: 100%;
    padding: 30px 20px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #6b7280;
}
.drop-zone:hover, .drop-zone.dragover {
    border-color: #0066ff;
    background: #eff6ff;
    color: #0066ff;
}
.drop-zone i {
    width: 24px;
    height: 24px;
}
