body {
  
  background-image: url(/squeeb2.png);
  color: #110B11;
  font-family: Advent Pro;
  font-size:16pt;
}
.container_type_1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly ;
  text-align: center;
  align-items:center;
}
.child1 {
  margin: 5px;
}
.child {
  margin: 5px;
  overflow-y: scroll;
}

.music-player {
            background-color: #E2C1FF;
            border: 2px solid #191919;
            border-radius: 5px;
            padding: 5px;
            display: flex;
            align-items: center;
            font-family: Advent Pro;
            font-size:14pt;
        }
        .music-player select, .music-player button {
            background-color: #191919;
            font-family: Advent Pro;
            color: #FFF7F5;
            border: 2px solid #191919;
            margin-right: 5px;
            cursor: pointer;
            padding: 2px 5px;
             font-size:14pt;
        }

       .feed-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }
        
        .feed-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .feed-header h3 {
            margin: 0;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .status-feed {
            height: 500px;
            overflow-y: auto;
            padding: 1rem;
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        .status-feed::-webkit-scrollbar {
            width: 8px;
        }
        
        .status-feed::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .status-feed::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
        }
        
        .status-feed::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        }
        
        .status-post {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .status-post:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-left-color: #667eea;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .post-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
        
        .post-info {
            flex-grow: 1;
        }
        
        .username {
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .post-time {
            color: #6c757d;
            font-size: 0.8rem;
            margin: 0;
        }
        
        .post-content {
            color: #495057;
            line-height: 1.5;
            margin-bottom: 0.75rem;
        }
        
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .tag {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .post-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.75rem;
            border-top: 1px solid #e9ecef;
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .action-btn {
            background: none;
            border: none;
            color: #6c757d;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .action-btn:hover {
            color: #667eea;
            transform: scale(1.1);
        }
        
        .post-type-update {
            border-left-color: #28a745 !important;
        }
        
        .post-type-blog {
            border-left-color: #fd7e14 !important;
        }
        
        .post-type-announcement {
            border-left-color: #dc3545 !important;
        }
        
        .new-post-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .new-post-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }
    </style>