.currency-card-fsp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #00a79d, #024fa1);
    border-radius: 15px;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    margin: auto;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.currency-card-fsp:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.currency-icon-fsp {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid white;
}

.currency-icon-fsp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.currency-details-fsp {
    flex: 1;
    text-align: right;
    padding-left: 15px;
}

.currency-name-fsp {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    bottom: 0;
}

.exchange-rate-fsp {
    margin: 8px 0;
    font-size: 22px;
}

.rate-label-fsp {
    font-weight: 600;
    opacity: 0.9;
}
