/* Image to Base64 Converter Styles */ .converter-container { max-width: 800px; margin: 0 auto; } .upload-area { background: #000000; border: 3px dashed #ffd700; border-radius: 15px; padding: 40px 20px; text-align: center; cursor: pointer; transition: all 0.3s ease; margin-bottom: 30px; } .upload-area:hover { background: #1a1a1a; border-color: #ffff00; } .upload-area i { font-size: 3em; color: #ffd700; margin-bottom: 15px; } .upload-area h3 { color: #ffd700; margin-bottom: 10px; } .upload-area p { color: #ffd700; opacity: 0.8; margin-bottom: 20px; } .preview-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; } .image-preview { background: #000000; border: 2px solid #ffd700; border-radius: 10px; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; text-align: center; } .image-preview img { max-width: 100%; max-height: 180px; border-radius: 5px; } .image-preview i { font-size: 2em; color: #ffd700; margin-bottom: 10px; } .image-preview p { color: #ffd700; } .image-info { background: #000000; border: 2px solid #ffd700; border-radius: 10px; padding: 20px; } .info-item { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #333; } .info-item:last-child { margin-bottom: 0; border-bottom: none; } .info-item span:first-child { color: #ffd700; font-weight: bold; } .info-item span:last-child { color: #ffffff; } .action-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 30px; } .result-section { background: #000000; border: 2px solid #ffd700; border-radius: 10px; padding: 20px; } .result-section label { display: block; color: #ffd700; font-weight: bold; margin-bottom: 10px; } .result-section textarea { width: 100%; padding: 15px; border: 2px solid #ffd700; border-radius: 5px; background: #000000; color: #ffd700; font-family: monospace; resize: vertical; margin-bottom: 15px; } .result-actions { display: flex; gap: 10px; } /* Responsive */ @media (max-width: 768px) { .preview-section { grid-template-columns: 1fr; } .action-buttons { flex-direction: column; } }