.type-div{
    color: #ffffff !important;
    padding-top: 0px !important;
    background: #a0a0a01a;
    box-shadow: 0 8px 32px 0 rgba(12, 36, 73, 0.37);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgb(255, 255, 255);
    display: block;
    cursor: pointer;
}

.bg-panel{
    background-color: #ffffff;
    border-radius: 10px;
}

.text-yellow{
    color: #F69401;
}

.checkout-btn {
    border-radius: 30px;
    transition: background-color 0.3s ease-in-out;
}

.hover-3d {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-3d:hover {
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.378) !important;
    transform: translateY(-5px);
    cursor: pointer;
}

.selected-card {
    border: 2px solid #ff9800 !important;
}


.card {
    background-color: #333333 !important;
    border-radius: 10px;
    display: flex;
    color: white;
}

.image-wrapper {
    height: 180px; /* Fixed height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282828 !important;
}

.image-wrapper img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.card-body {
    flex-grow: 1;
    overflow: hidden; /* Prevents text overflow */
}

.card-title {
    max-height: 60px; /* Adjust height for text */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.checkout-btn:hover {
    background-color: #7e4d03;
}

.bg-yellow{
    background-color: #FF9900;
}

.bbtn{
    padding: 14px 40px;
    border-radius: 10px;
}

.active-ride{
    background-color: #99B42C !important;
    border: 0px solid #8b9cfc;
    box-shadow: 0 8px 32px 0 rgba(74, 92, 252, 0.603);
    border-radius: 20px;
}

.ongoingUser-ride{
    background-color: #f0ffb4 !important;
    border: 0px solid #8b9cfc;
    box-shadow: 0 8px 32px 0 rgba(74, 92, 252, 0.603);
    border-radius: 20px;
}

.completed-ride{
    background-color: #99B42C !important;
    border-radius: 20px;
}

.canceled-ride{
    background-color: #921f0b !important;
    border-radius: 20px;
}

.user-image{
    border-radius: 50%;
    box-shadow: 0 8px 32px 0 rgba(33, 31, 8, 0.848);
    display: block;
}

.cancel-btn{
    background-color: #f73939 !important;
    border: none;
    transition: background-color 0.3s ease;
}

.cancel-btn:hover{
    background-color: #fa2121 !important;
}

.call-btn{
    background-color: #086819 !important;
    border-color: #086819 !important;
}

.hover{
    cursor: pointer;
}

.profile-background{
    background-image: url('../img/taxi-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes rotateImage {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 767.98px) {
    .profile-section{
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }
    .panel-btn , .panel-btn-active  {
        border-radius: 40px !important;
    }
}

.user-image {
    display: block;
    animation: rotateImage 4s ease-in-out infinite;
}


.profile-section{
    background-color: #041538;
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.panel-btn:focus{
    outline: none !important;
    box-shadow: none !important;
}

.panel-btn-active:focus{
    outline: none !important;
    box-shadow: none !important;
}

.panel-btn-active{
    border: none;
    background-color: #041538 !important;
    border-radius: 10px 10px 0 0 ;
}

.panel-btn{
    outline: none;
    background-color: #0a358d !important;
    border: 0px solid #0a358d;
    color: #ffffff;
    border-radius: 10px 10px 0 0 ;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.panel-btn:hover{
    outline: none;
    background-color: #001f5e !important;
    color: #ffffff;
    border-radius: 10px 10px 0 0 ;
}

.custom-number-input {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.text-price{
    color: #19fa42;
}

.custom-number-btn {
    width: 60% !important;
    background: rgb(51, 51, 51);
    border: none;
    padding: 1px 1px !important;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: background 0.3s;
}

.custom-number-btn:hover {
    background: #e2e6ea;
}

.custom-number-input input {
    text-align: start;
    border: none;
    width: 100%;
    flex-grow: 1;
    padding: 8px 10px;
    font-size: 16px;
}

.custom-number-input input:focus {
    outline: none;
}

.custom-number-input input::-webkit-outer-spin-button,
.custom-number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-number-input input[type=number] {
    -moz-appearance: textfield;
    /* Hide default arrows in Firefox */
}