.rental-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s;
}

.rental-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.rental-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.rental-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    flex: 1;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b6b;
    white-space: nowrap;
}

.rental-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-icon {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.detail-label {
    font-weight: bold;
    min-width: 80px;
}

.detail-text {
    color: #4a5568;
    font-size: 0.95rem;
}

.rental-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.time-ago {
    color: #718096;
    font-size: 0.9rem;
}

.ver-mas-btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
    text-align: center;
    margin-top: 1rem;
}

.ver-mas-btn:hover {
    background-color: #ff5252;
}

.view-more {
    color: #4299e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-more:hover {
    text-decoration: underline;
}
