i/*
 * covema-file-widget.css
 *
 * This file contains custom CSS for the Covema File Elementor Widget.
 * It is enqueued in the main plugin file (covema-file-elementor-widget.php).
 *
 * @since 1.0.0
 */

/* Basic styling for the widget container */
.covema-file-elementor-widget {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px; /* Add some space below the widget */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for the widget title */
.covema-file-widget-title {
    font-family: 'Inter', sans-serif; /* Use Inter font for consistency */
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.covema-file-widget-title:hover {
    color: #0073e6; /* Change color on hover */
}

/* Styling for the widget parameters */
.covema-file-widget-parameter {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .covema-file-elementor-widget {
        padding: 15px;
    }

    .covema-file-widget-title {
        font-size: 1.8em;
    }

    .covema-file-widget-parameter {
        font-size: 1em;
    }
}

