
  
.album-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 10px;
}

.album-block {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
}

.album-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.album-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-open {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-open:hover {
    background-color: #2563eb;
}

.btn-copy {
    background-color: #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.btn-copy:hover {
    background-color: #d1d5db;
}

.container-g {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}