 :root {
 --btn-height: 64px;
 }

 .address-buttons-container {
 display: flex;
 flex-direction: column;
 gap: 20px;
 max-width: 100%;
 width: 100%;
 }

 .address-btn {
 background: #ffffff;
 border: 1px solid #e0e0e0;
 border-radius: 5px;
 color: #333;
 height: var(--btn-height);
 padding: 0 20px;
 font-size: 13px;
 line-height: 1.3;
 text-align: left;
 cursor: pointer;
 transition: all 0.2s ease;
 width: 100%;
 box-sizing: border-box;
 display: block;
 }
 
 .address-btn:hover {
 border-color: #007bff;
 transform: translateY(-1px);
 background-color: #FFFFD0;
}

 .address-btn strong {
 display: block;
 margin: 10px 0 6px 0;
 font-weight: 600;
 color: #1a1a1a;
 }

 .address-btn small {
 color: #353535;
 font-size: 13px;
 margin: 0;
 }

 .address-btn:hover {
 border-color: #FFD75E;
 transform: translateY(-1px);
 }