body {
    background: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    width: 60%;
    margin: 40px auto;
    text-align: center;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    margin: block;
}

.button-row {
    margin-top: 12px;
}

.button-row button {
    background: #444;
    color: #fff;
    margin-right: 6px;
    padding: 8px 12px;
    border: 1px solid #666;
    border-radius: 4px;
    cursor: pointer;
    gap: 6px;
}

.button-row button:hover {
    background: #555;
}

.counter-box {
    color: #bbb;
    font-size: 13px;
    margin-top: 8px;
}

.button-group {
  border: 1px solid #444;
  border-radius: 10px;
  padding: 8px;
  margin: 10px auto;    
  background-color: #222;
  max-width: 600px;  }   

.button-group h3 {
  margin-top: 0;
  margin-bottom: 6px; 
  font-size: 13px; 
  color: #ccc;
}


.button-group button {
  margin: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #555;      
  background-color: #333;      
  color: #eee;                      
  cursor: pointer;
  transition: all 0.2s;
}

.button-group button:hover {
  background-color: #555;
}

.button-flash {
    background-color: #4c6fff !important;
    color: white !important;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff4d4d;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------ */
/* Floating Sociabuzz Button */
/* ------------------------------ */

.floating-donate-container {
    position: fixed;
    bottom: -35px;        /* tersembunyi sedikit */
    left: 20px;
    width: 60px;
    height: 60px;
    transition: all 0.35s ease;
    z-index: 9999;
    cursor: pointer;
}

.floating-donate-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;   /* bulat */
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

/* Saat mouse dekat / hover → pop-up ke atas */
.floating-donate-container:hover {
    bottom: 20px;
}

.floating-donate-container:hover .floating-donate-icon {
    transform: scale(1.12);
}
