@charset "utf-8";
/* CSS Document */
#menu-toggle {
    position: fixed;
    /*top: 20px;*/
    left: 20px;
    z-index: 100;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
	display: none;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: left 0.3s ease;
}

.menu-header {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin:0;
    display: flex;
}

.menu-header > div {
    text-align: center;
    margin:auto;
    width: 50%;
 }

.profile-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.sign-out-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.sign-in-btn {
    background: #04AA6D;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item > a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000000;
    background-color: #e9ecef;
    transition: background-color 0.3s, color 0.3s;
}

.menu-item > a:hover{
    background-color: #0056b3;
    color: white;
}

.parent-link {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.child-links {
    list-style: none;
    padding-left: 15px;
    display: none;
    margin: 0;
}

.child-links a {
    display: block;
    padding: 10px 0 10px 10px;
    color: #555;
    text-decoration: none;
}

.child-links a:hover {
    color: #FFF;
    background-color:#1F76D6;
}

.your_horse_show_patterns{
	padding: 20px 0px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.your_horse_show_patterns > div > a,
.your_horse_show_patterns > button{
	background:#666;
    color: #fff;
    border: none;
	font-size:0.9em;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
	top: 20px;
	position: absolute;
}

.your_horse_show_patterns > div > a:hover,
.your_horse_show_patterns > button:hover{
	background:#0056B3;
    color: #fff;
    border: none;
    cursor: pointer;
	font-size:1.0em;
}