.pexels-tabs {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.tabs {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabs li {
    cursor: pointer;
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #f1f1f1;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.tabs li:hover {
    background-color: #ddd;
}

.pexels-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pexels-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#pexels-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#pexels-pagination button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#pexels-pagination button:hover {
    background-color: #45a049;
}
