/*

'||''|.   ..|''||   |''||''|     |     |''||''|  ..|''||   
 ||   || .|'    ||     ||       |||       ||    .|'    ||  
 ||...|' ||      ||    ||      |  ||      ||    ||      || 
 ||      '|.     ||    ||     .''''|.     ||    '|.     || 
.||.      ''|...|'    .||.   .|.  .||.   .||.    ''|...|'  
                                                           
                                                           
POTATO.THESERVER.LIFE
LICENSE GPL-3.0

-------------------------------
profile.css
-
Profile section styles
*/



#profile-info p {
    margin: 5px 0;
  }
  
  #profile-controls {
    margin-top: 10px;
  }
  
  #profile-controls div {
    margin-bottom: 10px;
  }
  
  #profile-controls input {
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #27ae60;
    border-radius: 5px;
  }
  
  #profile-controls button {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #profile-controls button:hover {
    background-color: #219653;
  }

  .warning-banner {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
  }
  
  .warning-banner .close-btn {
    background: none;
    border: none;
    color: #856404;
    cursor: pointer;
    font-size: 16px;
    padding: 0 5px;
  }