.main-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.header {
    background: linear-gradient(to right, #d1ac39, #c58134, #b85030, #ab282d);
    height: 60px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-title {
    color: white;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 60px;
    position: relative;
    z-index: 2;
}

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.main-content {
    width: 1200px;
    /*height: calc(100vh - 60px);*/
    /*overflow-y: auto;*/
}

.grid-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.grid-item {
    width: 30%;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.user-company {
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d2691e 0%, #cd5c5c 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.load-more-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.no-more-text {
    text-align: center;
    margin: 40px auto;
    color: #999;
    font-size: 14px;
    width: fit-content;
}