
.event-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: #f9f9f9;
 border-radius: 8px;
 padding: 10px;
 margin-bottom: 15px;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.event-details {
 display: flex;
 flex-direction: column;
 align-items: flex-start
}

.event-details p {
 margin: 5px 0;
 line-height: 1.2
}

.event-title {
 font-weight: bold;
 font-size: 1.1em;
 color: #333;
 text-decoration: none
}

.event-title:hover {
 text-decoration: underline
}

.event-date {
 color: #666
}

.event-buttons {
 display: flex;
 gap: 10px
	}

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


.profile_btns button,
.event-buttons button {
 flex: 1;
 min-width: 160px;
 max-width: 200px;
 padding: 8px 0px;
 font-size: 0.9em;
 box-sizing: border-box
}


.flex_btn {
 display: flex;
 flex-wrap: wrap;
 gap: 10px
}


.smaller-font {
 font-size: 90%
}



input[type="file"] {
 display: none
}


.action-buttons-container {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 margin-top: 20px
}


.left-aligned-btn {
 width: 100%;
 text-align:left
}

.bulk-upload-section {
 width: 100%
 }




#file-name-display {
 text-align:left;
 padding-right: 50px
}

.upload-btn {
 justify-self: end
}


.custom-file-upload {
 display: inline-block;
 padding: 10px 15px;
 background-color: #09cfff;
 color: white;
 border: none;
 border-radius: 5px;
 font-size: 1em;
 cursor: pointer;
 transition: background-color 0.3s ease
}


.custom-file-upload:hover {
 background-color: #004080;
 text-decoration: none
}


#file-name-display {
 display: inline-block;
 margin-left: 10px;
 font-size: 0.9em;
 color: #333
}

@media (max-width: 768px) {
 .event-buttons {
 flex-direction: column;
 align-items: flex-end;
 gap: 10px;
 width: auto
 }

 .event-buttons button {
 width: 100%;
 margin: 0;
 max-width: 300px
 }
}

#user-calendar {
 max-width: 900px;
 margin: 0 auto;
 padding: 20px;
max-height: 600px;
    overflow-y: auto;
}

@import url(https://fonts.googleapis.com/css?family=Roboto:300,100);

/* Wrapper for all icons */
.calendar-icons-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three icons in a row */
    gap: 20px;
    margin-top: 10px;
    text-align: center; /* Ensure text alignment is centered */
}

/* Mobile responsive layout */
@media (max-width: 768px) {
    .calendar-icons-wrapper {
        grid-template-columns: 1fr; /* One icon per row */
    }
}

.calendar-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Space between icon and label */
}

.calendar-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.calendar-icon.apple {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

#day-apple {
    color: red;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: -1px;
    text-decoration: none;
}

#date-apple {
    font-weight: 300;
    font-size: 30px;
    color: black;
}

.calendar-icon.google {
    background-image: url('https://bmxevents.co.uk/assets/images/googlebg.png');
    background-size: cover;
    background-position: center;
}

#day-google, #date-google {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
}

#day-google {
    top: 5px;
}

#date-google {
    font-size: 25px;
    color: #4285f4;
    top: 17px;
}

.calendar-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.calendar-label {
    font-size: 14px;
    color: black;
    text-align: center;
}

.calendar-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
