/**
Theme Name: Astra Child
Author: Munna Chowdhury
Author URI: https://www.convylab.com
Description: This is an Astra child theme developed by Munna Chowdhury for Dr. Phil Stutz. For any changes/issues, please contact Munna at <a href=\"mailto:munna@convylab.com\">munna@convylab.com</a> or <a href=\"mailto:munna.txt@gmail.com\">munna.txt@gmail.com</a>
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/


.calendar-container {
    position: relative;
    display: inline-block;
}
.calendar-btn {
    background-color: #f6f8fa;
    color: #333;
    padding: 10px 15px;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calendar-btn svg {
    width: 16px;
    height: 16px;
    fill: #555;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-content a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: background-color 0.2s ease;
}
.dropdown-content a:hover {
    background-color: #f5f5f5;
}
.calendar-container.open .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.calendar-container.open .angle-down-icon {
    transform: rotate(180deg);
}