.ws-typical-box {
    padding: 20px;
    max-width: 100%;
    /* Responsive */
    width: 550px;
    /* Default width */
    margin: 0 auto 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: bold;
  	background: rgba(255, 255, 255, 0.1);
  	backdrop-filter: blur(5px);
  	-webkit-backdrop-filter: blur(5px);
  	border-radius: 20px;
  	border: 1px solid rgba(255, 255, 255, 0.3);
  	box-shadow: 
    	0 8px 32px rgba(0, 0, 0, 0.1),
    	inset 0 1px 0 rgba(255, 255, 255, 0.5),
    	inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    	inset 0 0 20px 10px rgba(255, 255, 255, 0.3);
  	position: relative;
  	overflow: hidden;
}

.ws-typical-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.ws-typical-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.ws-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.ws-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
}

.ws-zone-badge {
    background: #e3f2fd;
    color: #1565c0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    vertical-align: middle;
}

.ws-date {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ws-prayer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-prayer-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #f9f9f9;
    transition: background-color 0.2s;
}

.ws-prayer-list li:last-child {
    border-bottom: none;
}

.ws-prayer-list li:hover {
    background-color: #f8f9fa;
}

.ws-prayer-list li.ws-highlight {
    background-color: #e8f5e9;
    font-weight: bold;
    border-radius: 6px;
    color: #2e7d32;
}

.ws-prayer-name {
    font-size: 1rem;
}

.ws-prayer-time {
    font-weight: 500;
}

.ws-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
}

.ws-error {
    border-color: #ffcdd2;
    background: #ffebee;
    color: #c62828;
}