.md5-generator-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
}
.drop-zone {
border: 2px dashed #007BFF;
border-radius: 15px;
padding: 50px;
transition: background-color 0.3s ease, border-color 0.3s ease;
cursor: pointer;
}
.drop-zone.drag-over {
background-color: #e6f7ff;
border-color: #0056b3;
}
.drop-zone-text {
color: #007BFF;
}
.drop-zone-text i {
font-size: 50px;
margin-bottom: 20px;
}
.drop-zone-text p {
font-size: 20px;
margin: 0;
font-weight: 600;
}
.drop-zone-text span {
display: block;
margin: 10px 0;
color: #6c757d;
}
.browse-btn {
background-color: #007BFF;
color: #fff;
border: none;
padding: 12px 25px;
border-radius: 25px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.browse-btn:hover {
background-color: #0056b3;
}
.file-list {
margin-top: 30px;
}
.file-item {
background-color: #fff;
padding: 15px;
border-radius: 10px;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.file-info {
display: flex;
align-items: center;
}
.file-info i {
font-size: 24px;
color: #007BFF;
margin-right: 15px;
}
.file-name {
font-size: 16px;
color: #343a40;
}
.progress-container {
width: 200px;
background-color: #e9ecef;
border-radius: 10px;
height: 10px;
overflow: hidden;
}
.progress-bar {
width: 0;
height: 100%;
background-color: #28a745;
transition: width 0.4s ease;
}
.progress-bar.done {
background-color: #28a745;
}
.hash-result {
display: flex;
align-items: center;
}
.hash-value {
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
background-color: #f8f9fa;
padding: 5px 10px;
border-radius: 5px;
margin-right: 10px;
color: #495057;
}
.copy-btn {
background: none;
border: none;
cursor: pointer;
font-size: 18px;
color: #007BFF;
transition: color 0.3s ease;
}
.copy-btn:hover {
color: #0056b3;
}