/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Custom CSS for Drag-and-Drop Upload */
.drag-and-drop-upload {
    display: block;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.drag-and-drop-upload:hover {
    border-color: #0073aa;
    color: #0073aa;
}

.drag-and-drop-upload input[type="file"] {
    display: none; /* Hide the default file input */
}

.drag-and-drop-upload.highlight {
    border-color: #0073aa;
    background-color: #f0f8ff;
}

/* Custom CSS for Print Form */
.print-form .print-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.print-form .print-button:hover {
    background-color: #005177;
}