        .calendar {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);            
            width: 360px;
            max-width: auto;
            margin: 0 auto;
            position: fixed;
            padding: 20px;
            z-index: 1000;
            top: 300px;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .header h2 {
            margin: 0;
            font-size: 20px;
        }

        .header button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        /*.header button:hover {
            background: #45a049;
        }*/

        .days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 5px;
        }

        .day-name {
            text-align: center;
            font-weight: bold;
            padding: 10px 0;
            font-size: 14px;
            color: var(--dark-gray);
        }

        .dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }

        /*
        .dateC {
            height: auto;
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            border: 1px solid #e0e0e0;
            padding: 5px;
            position: relative;
        }
        */
        .dateC {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            font-size: 14px;
        }

        .dateC a {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        .dateC:hover {
            background: #e8f5e9;
        }

        .dateC.other-month {
            color: var(--dark-gray);
        }

        .dateC.today {
            background: var(--primary-color);
            color: white;
            font-weight: bold;
        }