/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/.sidebar-btn {
    display: block;
    background-color: #282c69; /* PVA Navy */
    color: #ffffff !important;
    padding: 12px 40px 12px 20px;
    margin-bottom: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Arrow animation */
.sidebar-btn::after {
    content: '\2192';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

/* Hover */
.sidebar-btn:hover {
    background-color: #3a4191; /* lighter navy */
    padding-left: 25px;
    box-shadow: 0 4px 12px rgba(40, 44, 105, 0.3);
}

.sidebar-btn:hover::after {
    right: 15px;
    opacity: 1;
}


