/* static/css/style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #F2F2F2; /* Slightly off-white background for better contrast */
}

.container {
    margin-top: 20px;
    background-color: #FFF; /* White for the content container */
    padding: 30px;
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow to give depth */
}

.custom-card {
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.custom-card-text {
    font-size: 18px;
    margin-bottom: 25px;
}

.custom-btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 16px;
}

/* Drag & Drop styles */
.upload-box {
    border: 2px dashed #A0A0A0;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    padding: 60px 20px;
    text-align: center;
}

.upload-box:hover {
    background-color: #F0F0F0;
}

.upload-box p {
    font-size: 16px;
    color: #A0A0A0;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
