/* Main Stylesheet - Yapabilen */

/* Custom File Input Style */
input[type="file"] {
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
    color: #64748b;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
}

input[type="file"]::file-selector-button {
    margin-right: 15px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8125rem;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #5a6fd1 0%, #6a4391 100%);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.35);
    transform: scale(1.02);
}

input[type="file"]:hover {
    border-color: #667eea;
    background: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

input[type="file"]:focus {
    outline: none;
    border-color: #764ba2;
    background: #ffffff;
}
